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,
|
2021-05-02 18:31:25 +08:00
|
|
|
"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",
|
2021-02-12 12:55:19 +08:00
|
|
|
"vite-plugin-vue-layouts/client"
|
2021-02-07 00:33:00 +08:00
|
|
|
],
|
2020-08-22 00:12:07 +08:00
|
|
|
"paths": {
|
2021-02-05 09:34:09 +08:00
|
|
|
"~/*": ["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
|
|
|
}
|