2025-12-05 16:18:01 +08:00
|
|
|
{
|
2026-01-17 16:15:36 +08:00
|
|
|
"compilerOptions": {
|
2026-04-13 16:07:24 +08:00
|
|
|
"target": "es2025",
|
2026-01-17 16:15:36 +08:00
|
|
|
"useDefineForClassFields": true,
|
2026-04-13 16:07:24 +08:00
|
|
|
"lib": ["ESNext", "DOM"],
|
|
|
|
|
"module": "esnext",
|
2026-01-17 16:15:36 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"allowJs": true,
|
2025-12-05 16:18:01 +08:00
|
|
|
|
2026-02-03 19:09:37 +08:00
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
|
2026-01-17 16:15:36 +08:00
|
|
|
"outDir": "dist",
|
2025-12-05 16:18:01 +08:00
|
|
|
|
2026-01-17 16:15:36 +08:00
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"verbatimModuleSyntax": false,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
2025-12-05 16:18:01 +08:00
|
|
|
|
2026-01-17 16:15:36 +08:00
|
|
|
/* Linting */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"erasableSyntaxOnly": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2026-04-12 02:04:21 +08:00
|
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
|
|
|
|
|
|
"types": ["node"]
|
2026-01-17 16:15:36 +08:00
|
|
|
}
|
2025-12-05 16:18:01 +08:00
|
|
|
}
|