-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.base.json
32 lines (32 loc) · 1.03 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": ".",
"moduleResolution": "Bundler",
"strict": true,
"forceConsistentCasingInFileNames": true,
"target": "esnext",
"isolatedModules": true,
"esModuleInterop": true,
"module": "esnext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
"marble-api": ["packages/marble-api/src/index.ts"],
"marble-api/*": ["packages/marble-api/src/*"],
"tests/*": ["packages/tests/*"],
"typescript-utils": ["packages/typescript-utils/src/index.ts"],
"ui-icons": ["packages/ui-icons/src/index.ts"],
"ui-design-system": ["packages/ui-design-system/src/index.ts"],
"@app-builder/*": ["packages/app-builder/src/*"]
},
"pretty": true
},
"exclude": ["**/*/node_modules", "tmp"]
}