AFFiNE/apps/docs/tsconfig.json
2023-08-25 11:52:33 -05:00

26 lines
554 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"moduleResolution": "bundler",
"strict": true,
"target": "esnext",
"downlevelIteration": true,
"esModuleInterop": true,
"module": "NodeNext",
"skipLibCheck": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"include": ["src", "entries.ts"],
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "../../packages/component"
}
]
}