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",
|
2022-04-10 19:27:30 +08:00
|
|
|
"target": "ESNext",
|
2020-08-10 02:43:04 +08:00
|
|
|
"lib": ["DOM", "ESNext"],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
2022-04-10 19:27:30 +08:00
|
|
|
"jsx": "preserve",
|
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",
|
2022-03-23 22:48:07 +08:00
|
|
|
"vue/ref-macros",
|
2021-07-01 21:45:13 +08:00
|
|
|
"vite-plugin-pages/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
|
|
|
},
|
2022-02-07 10:11:57 +08:00
|
|
|
"exclude": ["dist", "node_modules", "cypress"]
|
2020-08-22 00:12:07 +08:00
|
|
|
}
|