ruoyi-plus-soybean/tsconfig.json

28 lines
558 B
JSON
Raw Normal View History

{
2022-03-05 23:20:00 +08:00
"compilerOptions": {
"baseUrl": ".",
2022-04-27 19:01:54 +08:00
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"jsx": "preserve",
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
2022-03-05 23:20:00 +08:00
"paths": {
2022-07-10 00:41:35 +08:00
"~/*": ["./*"],
"@/*": ["./src/*"]
2022-03-05 23:20:00 +08:00
},
2022-04-27 19:01:54 +08:00
"types": [
"vite/client",
"node",
"unplugin-icons/types/vue",
"naive-ui/volar"
]
},
2022-07-10 00:41:35 +08:00
"exclude": ["node_modules", "dist"]
}