ruoyi-plus-soybean/tsconfig.json

24 lines
638 B
JSON
Raw Normal View History

{
"compilerOptions": {
"baseUrl": ".",
2022-04-27 19:01:54 +08:00
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
2022-07-16 00:13:19 +08:00
"allowSyntheticDefaultImports": true,
2022-04-27 19:01:54 +08:00
"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-macros/macros-global"]
},
"exclude": ["node_modules", "dist"]
}