mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-12-15 06:41:46 +08:00
0f8b71c4b2
this is an active RFC, supported in volar already https://github.com/vuejs/rfcs/discussions/436
31 lines
787 B
JSON
31 lines
787 B
JSON
{
|
|
// https://v3.nuxtjs.org/concepts/typescript
|
|
"extends": "./.nuxt/tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "es2017",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "preserve",
|
|
"types": ["vite/client", "unplugin-icons/types/vue", "nuxt-windicss"],
|
|
"paths": {
|
|
"~/*": ["src/*"],
|
|
"#imports": [".nuxt/imports"]
|
|
}
|
|
},
|
|
"vueCompilerOptions": {
|
|
"jsxTemplates": true,
|
|
"experimentalRfc436": true
|
|
},
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|