ruoyi-plus-soybean/tsconfig.json

32 lines
746 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",
2023-11-17 08:45:00 +08:00
"jsxImportSource": "vue",
2022-04-27 19:01:54 +08:00
"moduleResolution": "node",
"isolatedModules": true,
2022-04-27 19:01:54 +08:00
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"paths": {
2023-11-17 08:45:00 +08:00
"@/*": ["./src/*"],
"~/*": ["./*"]
},
2023-11-17 08:45:00 +08:00
"types": [
"vite/client",
"node",
"unplugin-icons/types/vue",
"naive-ui/volar"
]
},
2023-11-17 08:45:00 +08:00
"include": ["./**/*.ts", "./**/*.tsx", "./**/*.vue"],
"exclude": ["node_modules", "dist"]
}