AFFiNE/packages/frontend/electron/tsconfig.json

43 lines
861 B
JSON
Raw Normal View History

2023-04-25 02:53:36 +03:00
{
"extends": "../../../tsconfig.json",
2023-04-25 02:53:36 +03:00
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
2023-04-25 02:53:36 +03:00
"target": "ESNext",
"module": "ESNext",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"types": ["node"],
"outDir": "lib",
"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", "lib", "dist", "**/__tests__/**/*"],
2023-04-25 02:53:36 +03:00
"references": [
{
"path": "../../frontend/native"
},
{
"path": "../../common/infra"
},
2023-08-03 07:47:05 +03:00
{
"path": "../../common/sdk"
2023-08-03 07:47:05 +03:00
},
{
"path": "../../common/env"
},
2023-06-09 11:43:46 +03:00
{
"path": "./tsconfig.node.json"
},
{
"path": "../../../tests/kit"
}
2023-04-25 02:53:36 +03:00
],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
}
}