PandaWiki/web/admin/tsconfig.app.json

25 lines
628 B
JSON
Raw Permalink Normal View History

2025-05-16 10:55:53 +08:00
{
2025-11-06 15:37:56 +08:00
"extends": "../tsconfig.base.json",
2025-05-16 10:55:53 +08:00
"compilerOptions": {
2025-11-06 15:37:56 +08:00
/* Vite + React */
2025-05-16 10:55:53 +08:00
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"allowImportingTsExtensions": true,
"moduleDetection": "force",
"jsx": "react-jsx",
/* Linting */
2025-08-19 19:02:07 +08:00
"noUnusedLocals": false,
"noUnusedParameters": false,
2025-05-16 10:55:53 +08:00
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src"]
}