mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-11 11:58:41 +00:00
29 lines
688 B
JSON
29 lines
688 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"useDefineForClassFields": false,
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"moduleResolution": "Bundler",
|
|
"esModuleInterop": true,
|
|
"noEmitOnError": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"composite": true
|
|
},
|
|
"files": [],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node",
|
|
"compilerOptions": {
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": false
|
|
}
|
|
}
|
|
}
|