mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-28 15:44:14 +03:00
46 lines
924 B
JSON
46 lines
924 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"skipLibCheck": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"types": ["node"],
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noImplicitOverride": true
|
|
},
|
|
"include": ["./src"],
|
|
"exclude": ["node_modules", "out", "dist", "**/__tests__/**/*"],
|
|
"references": [
|
|
{
|
|
"path": "../../packages/plugin-infra"
|
|
},
|
|
{
|
|
"path": "../../packages/native"
|
|
},
|
|
{
|
|
"path": "../../packages/infra"
|
|
},
|
|
{
|
|
"path": "../../packages/env"
|
|
},
|
|
|
|
// Tests
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
},
|
|
{
|
|
"path": "./e2e/tsconfig.json"
|
|
},
|
|
{ "path": "../../tests/kit" }
|
|
],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
}
|
|
}
|