vitesse/tsconfig.json
robbertvc 878995238e
feat: type-check source before build (#115)
Co-authored-by: Robbert Van Cauteren <robbert.vancauteren@robovision.eu>
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
2021-05-02 18:31:25 +08:00

26 lines
562 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "es2016",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"incremental": false,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"types": [
"vite/client",
"vite-plugin-vue-layouts/client"
],
"paths": {
"~/*": ["src/*"]
}
},
"exclude": ["dist", "node_modules"]
}