lx-admin-frontend/tsconfig.json

27 lines
678 B
JSON
Raw Normal View History

2023-04-02 01:01:56 +08:00
{
2023-04-03 00:05:09 +08:00
"compilerOptions": {
"target": "es2022",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"baseUrl": ".",
"allowJs": true,
"paths": {
"@/*": ["src/*"]
},
"types": ["vite/client"],
"skipLibCheck": true,
// 允许默认导入
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*.ts", "src/**/*.vue", "src/types/**/*.d.ts"],
"exclude": ["node_modules", "dist", "**/*.js"]
2023-04-02 01:01:56 +08:00
}