Files
webend/tsconfig.json
2026-06-12 12:31:35 +08:00

28 lines
779 B
JSON

{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "node16",
"moduleResolution": "node16",
"strict": true,
"noLib": false,
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"allowJs": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"paths": {
"@/*": ["./src/*"]
},
"types": ["vite/client", "unplugin-icons/types/vue", "element-plus/global"]
},
"include": ["mock/**/*.ts", "src/**/*.ts", "src/**/*.vue", "vite.config.ts"],
"exclude": ["node_modules", "dist", "**/*.js"]
}