zephyr-frontend/tsconfig.json
2023-09-19 23:48:51 +08:00

28 lines
620 B
JSON

{
"compilerOptions": {
"target": "es2016",
"lib": ["DOM", "ESNext"],
"jsx": "preserve",
"module": "ESNext",
"moduleResolution": "bundler",
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
},
"types": [
"vite/client",
"vite-plugin-pages/client",
"unplugin-vue-macros/macros-global"
],
"resolveJsonModule": true,
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"skipLibCheck": true
},
"exclude": ["dist", "node_modules"]
}