-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.base.json
39 lines (39 loc) · 1.4 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
38
39
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"typeRoots": ["node_modules/@types", "node_modules"],
"lib": ["es2017", "es2020", "es2021", "dom", "DOM.Iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
"@qspider/env": ["libs/browser/src/index.ts"],
"@qspider/browser": ["libs/browser/src/index.ts"],
"@qspider/contracts": ["libs/contracts/src/index.ts"],
"@qspider/desktop": ["libs/desktop/src/index.ts"],
"@qspider/docusaurus": ["libs/docusaurus/src/index.ts"],
"@qspider/game-shelf": ["libs/game-shelf/src/index.ts"],
"@qspider/game-state": ["libs/game-state/src/index.ts"],
"@qspider/html-renderer": ["libs/html-renderer/src/index.ts"],
"@qspider/i18n": ["libs/i18n/src/index.ts"],
"@qspider/importers": ["libs/importers/src/index.ts"],
"@qspider/renderer": ["libs/renderer/src/index.ts"],
"@qspider/utils": ["libs/utils/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}