-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.base.json
37 lines (37 loc) · 1.28 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
33
34
35
36
37
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"importHelpers": true,
"target": "ESNext",
"module": "esnext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": false,
"resolveJsonModule": true,
"allowImportingTsExtensions": false,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@osucad/core": ["packages/core/src/index.ts"],
"@osucad/editor": ["packages/editor/src/index.ts"],
"@osucad/editor/*": ["packages/editor/src/*"],
"@osucad/framework": ["packages/framework/src/index.ts"],
"@osucad/multiplayer": ["packages/multiplayer/src/index.ts"],
"@osucad/resources": ["packages/resources/src/index.ts"],
"@osucad/ruleset-mania": ["packages/ruleset-mania/src/index.ts"],
"@osucad/ruleset-osu": ["packages/ruleset-osu/src/index.ts"],
"@osucad/serialization": ["packages/serialization/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}