Hangar/frontend/tsconfig.json

23 lines
599 B
JSON
Raw Normal View History

2022-02-13 02:24:05 +08:00
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "es2017",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"incremental": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
2022-03-03 09:22:27 +08:00
"types": ["vite/client", "vite-plugin-pages/client", "vite-plugin-vue-layouts/client", "unplugin-icons/types/vue"],
2022-02-13 02:24:05 +08:00
"paths": {
"~/*": ["src/*"]
}
},
"exclude": ["dist", "node_modules"]
}