AFFiNE/tsconfig.json

94 lines
2.3 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,
"emitDecoratorMetadata": true,
"baseUrl": ".",
"paths": {
2023-02-18 05:08:52 +03:00
"@affine/component": ["./packages/component/src/index"],
"@affine/component/*": ["./packages/component/src/components/*/index"],
2023-03-11 08:15:19 +03:00
"@affine/templates/*": ["./packages/templates/src/*"],
2023-02-18 05:08:52 +03:00
"@affine/i18n": ["./packages/i18n/src"],
"@affine/i18n/hooks": ["./packages/i18n/src/i18n-generated"],
2023-03-02 04:26:55 +03:00
"@affine/debug": ["./packages/debug"],
"@affine/jotai": ["./packages/jotai"],
2023-03-11 08:15:19 +03:00
"@affine/env": ["./packages/env"],
"@affine/env/*": ["./packages/env/src/*"],
"@affine/utils": ["./packages/utils"],
2023-03-24 00:29:29 +03:00
"@affine/workspace/*": ["./packages/workspace/src/*"],
"@affine/graphql": ["./packages/graphql/src"],
"@affine-test/kit/*": ["./tests/kit/*"],
2023-04-02 10:57:50 +03:00
"@affine-test/fixtures/*": ["./tests/fixtures/*"],
"@toeverything/y-indexeddb": ["./packages/y-indexeddb/src"],
"@toeverything/hooks/*": ["./packages/hooks/src/*"],
"@affine/native": ["./packages/native/index.d.ts"],
"@affine/native/*": ["./packages/native/*"]
}
},
2023-02-17 05:43:52 +03:00
"references": [
{
"path": "./tests"
2023-02-18 05:08:52 +03:00
},
2023-04-25 02:53:36 +03:00
{
"path": "./apps/electron/tests"
},
2023-02-18 05:08:52 +03:00
{
"path": "./apps/web"
},
{
"path": "./apps/server"
},
2023-02-18 05:08:52 +03:00
{
"path": "./packages/component"
},
{
"path": "./packages/hooks"
},
2023-02-18 05:08:52 +03:00
{
"path": "./packages/i18n"
},
2023-03-02 04:26:55 +03:00
{
"path": "./packages/env"
2023-03-22 01:39:13 +03:00
},
{
"path": "./packages/graphql"
},
2023-03-22 01:39:13 +03:00
{
"path": "./packages/debug"
},
{
"path": "./packages/workspace"
2023-03-24 00:29:29 +03:00
},
2023-04-03 12:32:43 +03:00
{
"path": "./packages/y-indexeddb"
},
2023-03-24 00:29:29 +03:00
{
"path": "./tests/fixtures"
},
{
"path": "./tests/kit"
},
{
"path": "./tsconfig.node.json"
2023-04-25 02:53:36 +03:00
},
{
"path": "./apps/electron"
2023-02-17 05:43:52 +03:00
}
],
2023-02-18 05:08:52 +03:00
"files": [],
"exclude": ["node_modules"]
}