mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 09:31:46 +03:00
cc5a6e6d40
packages/frontend/web -> packages/frontend/apps/web packages/frontend/mobile -> packages/frontend/apps/mobile packages/frontend/electron -> packages/frontend/apps/electron
43 lines
942 B
JSON
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"
|
|
}
|
|
}
|