-
Notifications
You must be signed in to change notification settings - Fork 62
/
tsconfig.base.json
32 lines (32 loc) · 1.11 KB
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ESNext",
"module": "esnext",
"lib": ["ESNext", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@momentum/bitflags": ["libs/bitflags/src/index.ts"],
"@momentum/constants": ["libs/constants/src/index.ts"],
"@momentum/db": ["libs/db/src/index.ts"],
"@momentum/enum": ["libs/enum/src/index.ts"],
"@momentum/formats/bsp": ["libs/formats/bsp/src/index.ts"],
"@momentum/formats/replay": ["libs/formats/replay/src/index.ts"],
"@momentum/formats/zone": ["libs/formats/zone/src/index.ts"],
"@momentum/random": ["libs/random/src/index.ts"],
"@momentum/test-utils": ["libs/test-utils/src/index.ts"],
"@momentum/util-fn": ["libs/util-fn/src/index.ts"],
"@momentum/xp-systems": ["libs/xp-systems/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}