AFFiNE/packages/backend/server/tests/tsconfig.json

24 lines
497 B
JSON
Raw Normal View History

{
"extends": "../../../../tsconfig.json",
"compilerOptions": {
"composite": true,
"target": "ES2022",
"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": []
}