Files
DianZhanDemo/app/tsconfig.json

29 lines
718 B
JSON
Raw Permalink Normal View History

2025-12-11 01:29:41 +08:00
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"removeComments": false,
"sourceMap": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"@/*": ["./*"]
}
},
"include": ["**/*", ".nuxt/nuxt.d.ts"]
}