2021-06-18 13:05:06 +02:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"module": "ESNext",
|
|
|
|
"target": "ESNext",
|
|
|
|
"lib": ["es2017", "dom", "ESNext"],
|
|
|
|
"isolatedModules": true,
|
2022-04-27 19:47:21 +02:00
|
|
|
"importsNotUsedAsValues": "error",
|
2021-06-18 13:05:06 +02:00
|
|
|
"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"],
|
2021-09-05 23:07:02 +02:00
|
|
|
"@theatre/react": ["./packages/react/src/index.ts"],
|
2022-05-27 21:59:51 +02:00
|
|
|
"@theatre/r3f": ["./packages/r3f/src/index.ts"],
|
|
|
|
"@theatre/r3f/dist/extension": ["./packages/r3f/src/extension/index.ts"],
|
2021-10-04 20:06:12 +02:00
|
|
|
"@theatre/dataverse-experiments": [
|
|
|
|
"./packages/dataverse-experiments/src/index.ts"
|
2023-01-22 18:01:31 +01:00
|
|
|
],
|
|
|
|
"theatric": ["./packages/theatric/src/index.ts"]
|
2021-06-18 13:05:06 +02:00
|
|
|
},
|
|
|
|
"forceConsistentCasingInFileNames": true
|
|
|
|
},
|
|
|
|
"exclude": ["**/node_modules", "**/.*", "**/xeno", "**/dist", "**/.temp"]
|
|
|
|
}
|