AFFiNE/packages/frontend/apps/electron/tsconfig.json
EYHN cc5a6e6d40
refactor: new project struct (#8199)
packages/frontend/web -> packages/frontend/apps/web
packages/frontend/mobile -> packages/frontend/apps/mobile
packages/frontend/electron -> packages/frontend/apps/electron
2024-09-12 07:42:57 +00:00

43 lines
942 B
JSON

{
"extends": "../../../../tsconfig.json",
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"target": "ES2022",
"module": "ESNext",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"types": ["node", "affine__env"],
"outDir": "lib",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"noImplicitOverride": true,
"paths": {
"@toeverything/infra/*": ["../../common/infra/src/*"]
}
},
"include": ["./src"],
"exclude": ["renderer", "node_modules", "lib", "dist", "**/__tests__/**/*"],
"references": [
{
"path": "../../../frontend/native"
},
{
"path": "../../../common/infra"
},
{
"path": "../../../common/env"
},
{
"path": "./tsconfig.node.json"
},
{
"path": "../../../../tests/kit"
}
],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
}
}