gf-vben-admin/tsconfig.json

34 lines
864 B
JSON
Raw Normal View History

2020-09-28 20:19:10 +08:00
{
"compilerOptions": {
2021-01-09 23:28:52 +08:00
"target": "es2016",
2020-09-28 20:19:10 +08:00
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"strictFunctionTypes": false,
"jsx": "preserve",
2020-09-28 20:19:10 +08:00
"baseUrl": ".",
"allowJs": true,
2020-10-29 22:29:46 +08:00
"sourceMap": true,
2020-09-28 20:19:10 +08:00
"esModuleInterop": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"experimentalDecorators": true,
"lib": ["dom", "esnext"],
2021-01-09 23:28:52 +08:00
"types": ["vite/client", "vite-plugin-import-context/client"],
2020-09-28 20:19:10 +08:00
"incremental": true,
"skipLibCheck": true,
"paths": {
"/@/*": ["src/*"]
2020-09-28 20:19:10 +08:00
}
},
2020-10-29 22:29:46 +08:00
"plugins": [
{
"name": "@vuedx/typescript-plugin-vue"
}
],
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"exclude": ["node_modules", "dist", "**/*.js"]
2020-09-28 20:19:10 +08:00
}