AFFiNE/apps/web/tsconfig.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"
}
]
}