AFFiNE/apps/server/tests/tsconfig.json

24 lines
491 B
JSON
Raw Normal View History

{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"composite": true,
"target": "ESNext",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"rootDir": ".",
2023-09-17 00:40:33 +03:00
"outDir": "../lib/tests",
"verbatimModuleSyntax": false,
2023-09-17 00:40:33 +03:00
"tsBuildInfoFile": "../lib/tests/.tsbuildinfo"
},
"references": [
{
"path": "../tsconfig.json"
},
{
"path": "../../../tests/kit/tsconfig.json"
}
],
"include": ["."],
"exclude": []
}