2022-12-30 16:40:15 +03:00
|
|
|
{
|
|
|
|
"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"],
|
2023-03-11 08:15:19 +03:00
|
|
|
"@affine/component/block-suite-editor": [
|
|
|
|
"./packages/component/src/components/block-suite-editor/index"
|
|
|
|
],
|
|
|
|
"@affine/templates/*": ["./packages/templates/src/*"],
|
2023-02-18 05:08:52 +03:00
|
|
|
"@affine/datacenter": ["./packages/datacenter/src"],
|
|
|
|
"@affine/i18n": ["./packages/i18n/src"],
|
2023-03-02 04:26:55 +03:00
|
|
|
"@affine/debug": ["./packages/debug"],
|
2023-03-11 08:15:19 +03:00
|
|
|
"@affine/env": ["./packages/env"],
|
2023-03-23 19:17:38 +03:00
|
|
|
"@affine/env/*": ["./packages/env/src/*"],
|
|
|
|
"@affine/utils": ["./packages/utils"],
|
|
|
|
"@affine/workspace/*": ["./packages/workspace/src/*"]
|
2022-12-30 16:40:15 +03:00
|
|
|
}
|
|
|
|
},
|
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-03-22 01:39:13 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./packages/debug"
|
|
|
|
},
|
|
|
|
{
|
2023-03-23 19:17:38 +03:00
|
|
|
"path": "./packages/workspace"
|
2023-02-17 05:43:52 +03:00
|
|
|
}
|
|
|
|
],
|
2023-02-18 05:08:52 +03:00
|
|
|
"files": [],
|
2022-12-30 16:40:15 +03:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|