mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
Co-authored-by: himself65 <himself65@outlook.com> Co-authored-by: Peng Xiao <pengxiao@outlook.com>
50 lines
1002 B
JSON
50 lines
1002 B
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
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"src/types/types.d.ts",
|
|
"../../packages/graphql",
|
|
"../electron/layers"
|
|
],
|
|
"exclude": ["node_modules"],
|
|
"references": [
|
|
{
|
|
"path": "../../packages/env"
|
|
},
|
|
{
|
|
"path": "../../packages/debug"
|
|
},
|
|
{
|
|
"path": "../../packages/component"
|
|
},
|
|
{
|
|
"path": "../../packages/i18n"
|
|
},
|
|
{
|
|
"path": "../../packages/jotai"
|
|
},
|
|
{
|
|
"path": "../../packages/hooks"
|
|
}
|
|
]
|
|
}
|