vitesse/tsconfig.json

26 lines
562 B
JSON
Raw Normal View History

2020-08-10 02:43:04 +08:00
{
"compilerOptions": {
2020-08-22 00:12:07 +08:00
"baseUrl": ".",
2020-08-10 02:43:04 +08:00
"module": "ESNext",
"target": "es2016",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"incremental": false,
2020-08-10 02:43:04 +08:00
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
2021-01-23 15:55:10 +08:00
"noUnusedLocals": true,
"strictNullChecks": true,
2020-08-22 00:12:07 +08:00
"forceConsistentCasingInFileNames": true,
2021-02-07 00:33:00 +08:00
"types": [
"vite/client",
"vite-plugin-vue-layouts/client"
2021-02-07 00:33:00 +08:00
],
2020-08-22 00:12:07 +08:00
"paths": {
"~/*": ["src/*"]
2020-08-22 00:12:07 +08:00
}
2020-08-10 02:43:04 +08:00
},
2020-09-08 20:42:09 +08:00
"exclude": ["dist", "node_modules"]
2020-08-22 00:12:07 +08:00
}