first commit

This commit is contained in:
Hussar
2026-04-12 16:43:45 +01:00
commit 9213df4828
79 changed files with 2204 additions and 0 deletions

25
tsconfig.base.json Normal file
View File

@@ -0,0 +1,25 @@
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": false,
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022", "DOM"],
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@fog-explorer/api-interfaces": ["libs/api-interfaces/src/index.ts"],
"@fog-explorer/encounter-library": [
"libs/encounter-library/src/index.ts"
],
"@fog-explorer/mission-logic": ["libs/mission-logic/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}