admin-vben/tsconfig.json

42 lines
958 B
JSON
Raw Normal View History

2023-03-18 13:10:54 +00:00
{
"compilerOptions": {
2023-10-18 07:22:29 +00:00
"target": "ESNext",
2023-09-20 02:20:30 +00:00
"jsx": "preserve",
2023-10-18 08:02:26 +00:00
"lib": ["DOM", "ESNext"],
2023-09-20 02:20:30 +00:00
"noLib": false,
2023-10-18 08:02:26 +00:00
"experimentalDecorators": true,
"baseUrl": ".",
2023-10-18 07:22:29 +00:00
"module": "ESNext",
2023-03-18 13:10:54 +00:00
"moduleResolution": "node",
2023-09-20 02:20:30 +00:00
"paths": {
"@/*": ["src/*"]
},
"resolveJsonModule": true,
2023-10-18 08:02:26 +00:00
"types": ["vite/client"],
2023-03-18 13:10:54 +00:00
"allowJs": true,
2023-09-20 02:20:30 +00:00
"strict": true,
"strictFunctionTypes": false,
"noImplicitAny": false,
2023-03-18 13:10:54 +00:00
"noUnusedLocals": true,
"noUnusedParameters": true,
2023-10-18 08:02:26 +00:00
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
2023-09-20 02:20:30 +00:00
"skipLibCheck": true
2023-03-18 13:10:54 +00:00
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
2023-07-27 01:37:10 +00:00
"src/types/**/*.d.ts",
2023-03-18 13:10:54 +00:00
"src/types/**/*.ts",
"build/**/*.ts",
"build/**/*.d.ts",
"vite.config.ts"
],
2023-10-18 07:22:29 +00:00
"exclude": ["node_modules", "dist"]
2023-03-18 13:10:54 +00:00
}