2021-05-28 00:32:34 +08:00
|
|
|
{
|
2022-07-14 00:02:00 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
2022-04-27 19:01:54 +08:00
|
|
|
"module": "ESNext",
|
|
|
|
"target": "ESNext",
|
|
|
|
"lib": ["DOM", "ESNext"],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
2022-07-16 00:13:19 +08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-04-27 19:01:54 +08:00
|
|
|
"jsx": "preserve",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-07-14 00:02:00 +08:00
|
|
|
"paths": {
|
|
|
|
"~/*": ["./*"],
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
},
|
2022-09-15 06:33:48 +08:00
|
|
|
"types": ["vite/client", "node", "unplugin-icons/types/vue", "naive-ui/volar", "unplugin-vue-macros/macros-global"]
|
2022-07-14 00:02:00 +08:00
|
|
|
},
|
|
|
|
"exclude": ["node_modules", "dist"]
|
2021-05-28 00:32:34 +08:00
|
|
|
}
|