AFFiNE/apps/web/tsconfig.json

60 lines
1.2 KiB
JSON
Raw Normal View History

2022-09-22 10:39:53 +03:00
{
"extends": "../../tsconfig.json",
2022-09-22 10:39:53 +03:00
"compilerOptions": {
"target": "ESNext",
2022-09-22 10:39:53 +03:00
"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",
2022-09-22 10:39:53 +03:00
"incremental": true,
2023-03-11 08:15:19 +03:00
"experimentalDecorators": true
2022-09-22 10:39:53 +03:00
},
"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"
}
]
2022-09-22 10:39:53 +03:00
}