ruoyi-plus-soybean/tsconfig.json

27 lines
717 B
JSON
Raw Normal View History

{
"compilerOptions": {
2022-04-27 19:01:54 +08:00
"target": "ESNext",
"jsx": "preserve",
2023-11-17 08:45:00 +08:00
"jsxImportSource": "vue",
2023-12-14 21:45:29 +08:00
"lib": ["DOM", "ESNext"],
"baseUrl": ".",
"module": "ESNext",
2022-04-27 19:01:54 +08:00
"moduleResolution": "node",
"paths": {
2023-11-17 08:45:00 +08:00
"@/*": ["./src/*"],
"~/*": ["./*"]
},
2023-12-14 21:45:29 +08:00
"resolveJsonModule": true,
"types": ["vite/client", "node", "unplugin-icons/types/vue", "naive-ui/volar"],
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": false,
2023-12-14 21:45:29 +08:00
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true
},
2023-11-17 08:45:00 +08:00
"include": ["./**/*.ts", "./**/*.tsx", "./**/*.vue"],
"exclude": ["node_modules", "dist"]
}