AFFiNE/tsconfig.json
2023-03-10 23:15:19 -06:00

58 lines
1.3 KiB
JSON

{
"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": {
"@affine/component": ["./packages/component/src/index"],
"@affine/component/block-suite-editor": [
"./packages/component/src/components/block-suite-editor/index"
],
"@affine/templates/*": ["./packages/templates/src/*"],
"@affine/datacenter": ["./packages/datacenter/src"],
"@affine/i18n": ["./packages/i18n/src"],
"@affine/debug": ["./packages/debug"],
"@affine/env": ["./packages/env"],
"@affine/utils": ["./packages/utils"]
}
},
"references": [
{
"path": "./tests"
},
{
"path": "./apps/web"
},
{
"path": "./apps/desktop"
},
{
"path": "./packages/data-center"
},
{
"path": "./packages/component"
},
{
"path": "./packages/i18n"
},
{
"path": "./packages/env"
}
],
"files": [],
"exclude": ["node_modules"]
}