vue3-element-admin/tsconfig.json

30 lines
940 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,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"baseUrl": ".",
"allowJs": true,
2022-05-08 13:06:12 +08:00
"paths": {
"@/*": ["src/*"]
},
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"allowSyntheticDefaultImports": true /* */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"types": ["element-plus/global"],
"typeRoots": [
"./node_modules/@types/",
"src/types"
] /* './node_modules/@types'. */
2022-05-08 13:06:12 +08:00
},
"include": ["src/**/*.ts", "src/**/*.vue", "src/types/**/*.d.ts"],
"exclude": ["node_modules", "dist", "**/*.js"]
2021-11-13 23:26:02 +08:00
}