mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-26 02:24:42 +03:00
25 lines
521 B
JSON
25 lines
521 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"moduleResolution": "Node16",
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"module": "NodeNext",
|
|
"skipLibCheck": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["src", "entries.ts"],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
},
|
|
{
|
|
"path": "../../packages/component"
|
|
}
|
|
]
|
|
}
|