ruoyi-plus-soybean/tsconfig.json
2023-04-02 12:57:36 +08:00

30 lines
682 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"~/*": ["./*"],
"@/*": ["./src/*"]
},
"types": [
"vite/client",
"node",
"unplugin-icons/types/vue",
"naive-ui/volar",
"unplugin-vue-define-options/macros-global"
]
},
"exclude": ["node_modules", "dist"]
}