AFFiNE/tsconfig.json

53 lines
1.1 KiB
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2020",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
2023-02-18 05:08:52 +03:00
"@affine/component": ["./packages/component/src/index"],
"@affine/datacenter": ["./packages/datacenter/src"],
"@affine/i18n": ["./packages/i18n/src"],
2023-03-02 04:26:55 +03:00
"@affine/debug": ["./packages/debug"],
2023-03-02 05:13:45 +03:00
"@affine/env": ["./packages/env"]
}
},
2023-02-17 05:43:52 +03:00
"references": [
{
"path": "./tests"
2023-02-18 05:08:52 +03:00
},
{
"path": "./apps/web"
},
{
"path": "./apps/desktop"
},
{
"path": "./packages/data-center"
},
{
"path": "./packages/component"
},
{
"path": "./packages/i18n"
},
2023-03-02 04:26:55 +03:00
{
"path": "./packages/env"
2023-02-17 05:43:52 +03:00
}
],
2023-02-18 05:08:52 +03:00
"files": [],
"exclude": ["node_modules"]
}