Files
bichon/web/tsconfig.app.json
T

35 lines
757 B
JSON
Raw Permalink Normal View History

2025-11-19 02:14:37 +08:00
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2020",
"useDefineForClassFields": true,
2026-04-05 16:06:07 +08:00
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
2025-11-19 02:14:37 +08:00
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"paths": {
2026-04-05 16:06:07 +08:00
"@/*": [
"./src/*"
]
2025-11-19 02:14:37 +08:00
},
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
2026-04-05 16:06:07 +08:00
"include": [
"src"
]
}