Files

32 lines
730 B
JSON
Raw Permalink Normal View History

2025-03-26 19:06:46 +08:00
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
2025-03-26 20:33:37 +08:00
"noUnusedLocals": false,
"noUnusedParameters": false,
2025-03-26 19:06:46 +08:00
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"paths": {
"@/*": [
2025-04-11 09:17:33 +08:00
"./src/*"
2025-03-26 19:06:46 +08:00
]
}
},
"include": ["src"]
}