vue3-element-admin/tsconfig.json

34 lines
929 B
JSON
Raw Normal View History

2021-11-13 23:26:02 +08:00
{
2022-05-08 13:06:12 +08:00
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
2023-08-04 17:50:25 +08:00
"noLib": false,
2022-05-08 13:06:12 +08:00
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"baseUrl": ".",
"allowJs": true,
2022-05-08 13:06:12 +08:00
"paths": {
"@/*": ["src/*"]
},
2023-06-03 13:29:47 +08:00
"types": ["vite/client", "unplugin-icons/types/vue"],
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"allowSyntheticDefaultImports": true /* */,
2023-04-15 23:50:29 +08:00
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */
2022-05-08 13:06:12 +08:00
},
2023-08-04 17:50:25 +08:00
"include": [
"src/**/*.ts",
"src/**/*.vue",
"src/types/**/*.d.ts",
"mock/**/*.ts",
"vite.config.ts"
],
"exclude": ["node_modules", "dist", "**/*.js"]
// "references": [{ "path": "./tsconfig.node.json" }]
2021-11-13 23:26:02 +08:00
}