-
Notifications
You must be signed in to change notification settings - Fork 362
/
tsconfig.base.json
40 lines (40 loc) · 1.51 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
40
{
"compileOnSave": false,
"compilerOptions": {
"moduleResolution": "node",
"strict": true,
"allowSyntheticDefaultImports": true,
"module": "ESNext",
"target": "ESNext",
"lib": ["es2017", "dom", "ESNext"],
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"jsx": "react",
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"declarationMap": true,
"stripInternal": true,
"declaration": true,
"paths": {
"@theatre/core": ["./packages/core/src/index.ts"],
"@theatre/core/*": ["./packages/core/src/*"],
"@theatre/studio": ["./packages/studio/src/index.ts"],
"@theatre/studio/*": ["./packages/studio/src/*"],
"@theatre/utils": ["./packages/utils/src/index.ts"],
"@theatre/utils/*": ["./packages/utils/src/*"],
"@theatre/saaz": ["./packages/saaz/src/index.ts"],
"@theatre/app/*": ["./packages/app/src/*"],
"@theatre/sync-server/*": ["./packages/sync-server/src/*"],
"@theatre/dataverse": ["./packages/dataverse/src/index.ts"],
"@theatre/react": ["./packages/react/src/index.ts"],
"@theatre/r3f": ["./packages/r3f/src/index.ts"],
"@theatre/r3f/dist/extension": ["./packages/r3f/src/extension/index.ts"],
"@theatre/dataverse-experiments": [
"./packages/dataverse-experiments/src/index.ts"
],
"theatric": ["./packages/theatric/src/index.ts"]
},
"forceConsistentCasingInFileNames": true
},
"exclude": ["**/node_modules", "**/.*", "**/xeno", "**/dist", "**/.temp"]
}