2021-05-28 00:32:34 +08:00
|
|
|
{
|
2022-03-05 23:20:00 +08:00
|
|
|
"compilerOptions": {
|
2022-03-12 16:21:40 +08:00
|
|
|
"baseUrl": ".",
|
2022-04-27 19:01:54 +08:00
|
|
|
"module": "ESNext",
|
|
|
|
"target": "ESNext",
|
|
|
|
"lib": ["DOM", "ESNext"],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-03-05 23:20:00 +08:00
|
|
|
"paths": {
|
2022-07-10 00:41:35 +08:00
|
|
|
"~/*": ["./*"],
|
|
|
|
"@/*": ["./src/*"]
|
2022-03-05 23:20:00 +08:00
|
|
|
},
|
2022-04-27 19:01:54 +08:00
|
|
|
"types": [
|
|
|
|
"vite/client",
|
|
|
|
"node",
|
|
|
|
"unplugin-icons/types/vue",
|
|
|
|
"naive-ui/volar"
|
|
|
|
]
|
|
|
|
},
|
2022-07-10 00:41:35 +08:00
|
|
|
"exclude": ["node_modules", "dist"]
|
2021-05-28 00:32:34 +08:00
|
|
|
}
|