mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-26 01:12:30 +08:00
27 lines
896 B
JSON
27 lines
896 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"declarationMap": true,
|
|
"emitDeclarationOnly": true,
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"lib": ["ES2023"],
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": false, // TODO: Re-enable it at some point.
|
|
"noImplicitOverride": false, // TODO: Re-enable it at some point.
|
|
"noImplicitReturns": false, // TODO: Re-enable it at some point.
|
|
"noUnusedLocals": false, // TODO: Re-enable it at some point.
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "es2022",
|
|
"customConditions": ["development"],
|
|
"verbatimModuleSyntax": false, // TODO: Re-enable it when migrating back to ESM.
|
|
"resolveJsonModule": true,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
}
|
|
}
|