forked from theatre-js/theatre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": {
"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": ["./theatre/core/src/index.ts"],
"@theatre/studio": ["./theatre/studio/src/index.ts"],
"@theatre/studio/*": ["./theatre/studio/src/*"],
"@theatre/core/*": ["./theatre/core/src/*"],
"@theatre/shared/*": ["./theatre/shared/src/*"],
"@theatre/dataverse": ["./packages/dataverse/src/index.ts"],
"@theatre/react": ["./packages/react/src/index.ts"],
"@theatre/r3f": ["./packages/r3f/src/index.tsx"],
"@theatre/dataverse2": ["./packages/dataverse2/src/index.ts"]
},
"forceConsistentCasingInFileNames": true
},
"exclude": ["**/node_modules", "**/.*", "**/xeno", "**/dist", "**/.temp"]
}