mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-11 04:19:59 +03:00
61 lines
1.2 KiB
JSON
61 lines
1.2 KiB
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "@emotion/react",
|
|
"incremental": true,
|
|
"experimentalDecorators": true,
|
|
"types": ["react/experimental"]
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "src/types/types.d.ts"],
|
|
"exclude": ["node_modules"],
|
|
"references": [
|
|
{
|
|
"path": "../../packages/plugin-infra"
|
|
},
|
|
{
|
|
"path": "../../packages/infra"
|
|
},
|
|
{
|
|
"path": "../../packages/env"
|
|
},
|
|
{
|
|
"path": "../../packages/debug"
|
|
},
|
|
{
|
|
"path": "../../packages/component"
|
|
},
|
|
{
|
|
"path": "../../packages/i18n"
|
|
},
|
|
{
|
|
"path": "../../packages/jotai"
|
|
},
|
|
{
|
|
"path": "../../packages/hooks"
|
|
},
|
|
{
|
|
"path": "../../packages/graphql"
|
|
},
|
|
|
|
// Plugins
|
|
{
|
|
"path": "../../plugins/bookmark-block"
|
|
},
|
|
{
|
|
"path": "../../plugins/copilot"
|
|
}
|
|
]
|
|
}
|