AFFiNE/packages/backend/server/tsconfig.json

34 lines
745 B
JSON
Raw Normal View History

{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"composite": true,
"target": "ES2022",
"module": "ESNext",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2023-06-21 09:08:32 +03:00
"moduleResolution": "Bundler",
"allowSyntheticDefaultImports": true,
"isolatedModules": false,
"resolveJsonModule": true,
"types": ["node"],
"outDir": "dist",
2023-06-21 09:08:32 +03:00
"noEmit": false,
2023-06-27 12:23:19 +03:00
"verbatimModuleSyntax": false,
"rootDir": "./src"
},
2023-09-17 00:40:33 +03:00
"include": ["./src"],
"exclude": ["dist", "lib", "tests"],
2023-04-19 02:14:25 +03:00
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "../native/tsconfig.json"
2023-04-19 02:14:25 +03:00
}
],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
}
}