mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-13 13:14:21 +03:00
28 lines
602 B
JSON
28 lines
602 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": false,
|
|
"resolveJsonModule": true,
|
|
"types": ["node"],
|
|
"outDir": "dist",
|
|
"noEmit": false
|
|
},
|
|
"include": ["src", "package.json"],
|
|
"exclude": ["dist", "node_modules"],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
}
|
|
}
|