mirror of
https://github.com/vbenjs/gf-vben-admin.git
synced 2025-01-23 20:00:19 +08:00
35 lines
858 B
JSON
35 lines
858 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": false,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["dom", "esnext"],
|
|
"types": ["vite/client"],
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"/@/*": ["src/*"]
|
|
}
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "@vuedx/typescript-plugin-vue"
|
|
}
|
|
],
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
"exclude": ["node_modules", "dist", "**/*.js"]
|
|
}
|