2026-06-11 10:52:45 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es2024",
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
|
"composite": true,
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowImportingTsExtensions": true,
|
2026-06-11 14:02:47 +08:00
|
|
|
"verbatimModuleSyntax": false,
|
2026-06-11 10:52:45 +08:00
|
|
|
"strict": true,
|
2026-06-11 14:02:47 +08:00
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
2026-06-11 10:52:45 +08:00
|
|
|
"types": ["node"]
|
|
|
|
|
}
|
|
|
|
|
}
|