mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-01 13:55:38 +03:00
30 lines
657 B
JSON
30 lines
657 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"skipLibCheck": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"types": ["node"],
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noImplicitOverride": true
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "package.json"],
|
|
"exclude": ["out", "dist", "node_modules"],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
},
|
|
{
|
|
"path": "../../packages/native"
|
|
}
|
|
],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
}
|
|
}
|