2021-06-18 13:05:06 +02:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.base.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "dist",
|
|
|
|
"lib": ["ESNext", "DOM"],
|
|
|
|
"rootDir": ".",
|
|
|
|
"types": ["jest", "node"],
|
|
|
|
"emitDeclarationOnly": false,
|
2022-07-29 17:59:39 +02:00
|
|
|
"composite": true,
|
|
|
|
"resolveJsonModule": true
|
2021-06-18 13:05:06 +02:00
|
|
|
},
|
|
|
|
"references": [
|
|
|
|
{"path": "../../theatre"},
|
|
|
|
{"path": "../dataverse"},
|
2023-01-22 18:01:31 +01:00
|
|
|
{"path": "../r3f"},
|
|
|
|
{"path": "../theatric"}
|
2021-06-18 13:05:06 +02:00
|
|
|
],
|
2023-07-16 22:19:21 +02:00
|
|
|
"include": [
|
|
|
|
"./src/**/*",
|
|
|
|
"./src/**/*.json",
|
|
|
|
"./devEnv/**/*",
|
|
|
|
"./vite.config.ts"
|
|
|
|
]
|
2021-06-18 13:05:06 +02:00
|
|
|
}
|