mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-12 17:43:02 +03:00
34 lines
746 B
JSON
34 lines
746 B
JSON
{
|
|
"extends": "../../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "Bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": false,
|
|
"resolveJsonModule": true,
|
|
"types": ["node"],
|
|
"outDir": "dist",
|
|
"noEmit": false,
|
|
"verbatimModuleSyntax": false,
|
|
"rootDir": "./src"
|
|
},
|
|
"include": ["./src"],
|
|
"exclude": ["dist", "lib", "tests"],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
},
|
|
{
|
|
"path": "../storage/tsconfig.json"
|
|
}
|
|
],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
}
|
|
}
|