mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-28 19:12:07 +03:00
91c3040db7
Co-authored-by: himself65 <himself65@outlook.com>
23 lines
530 B
JSON
23 lines
530 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"],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
}
|
|
}
|