WholeProcessPlatform/frontend/tsconfig.json
扈兆增 875f674f60 过鱼设施数据填报导入修改
Co-authored-by: Copilot <copilot@github.com>
2026-04-27 09:28:16 +08:00

33 lines
852 B
JSON

{
"compilerOptions": {
"noUnusedLocals": false,
"noUnusedParameters": false,
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "bundler",
"strict": false, // 严格模式
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"baseUrl": ".",
"allowJs": true,
"paths": {
"@/*": ["src/*"]
},
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"types": ["vite/client"],
"ignoreDeprecations": "6.0",
"typeRoots": [
"./node_modules/@types/",
"./types"
]
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"exclude": ["node_modules", "dist", "**/*.js"]
}