Files

31 lines
791 B
JSON
Raw Permalink Normal View History

{
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,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
2026-01-17 16:15:36 +08:00
"outDir": "dist",
2026-01-17 16:15:36 +08:00
/* Bundler mode */
"moduleResolution": "bundler",
"verbatimModuleSyntax": false,
"noEmit": true,
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
2026-01-17 16:15:36 +08:00
/* Linting */
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"types": ["node"]
2026-01-17 16:15:36 +08:00
}
}