AFFiNE/apps/electron/tsconfig.json

43 lines
857 B
JSON
Raw Normal View History

2023-04-25 02:53:36 +03:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
2023-04-25 02:53:36 +03:00
"target": "ESNext",
"module": "ESNext",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"types": ["node"],
"outDir": "dist",
"moduleResolution": "node",
"resolveJsonModule": true,
"noImplicitOverride": true
2023-04-25 02:53:36 +03:00
},
2023-06-13 05:01:43 +03:00
"include": ["./src"],
"exclude": ["node_modules", "out", "dist"],
2023-04-25 02:53:36 +03:00
"references": [
{
2023-06-09 11:43:46 +03:00
"path": "../../packages/plugin-infra"
},
{
"path": "../../packages/native"
},
2023-06-08 04:41:20 +03:00
{
"path": "../../packages/infra"
},
2023-06-09 11:43:46 +03:00
// Tests
{
"path": "./tsconfig.node.json"
},
{
"path": "./tests/tsconfig.json"
},
{ "path": "../../tests/kit" }
2023-04-25 02:53:36 +03:00
],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
}
}