We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It will go to shims-vue.d.ts aflter command + click "*.vue" tags.
This is my shims-vue.d.ts
declare module '*.vue' { import { defineComponent } from "vue"; const component: ReturnType<typeof defineComponent>; export default component; }
And this is tsconfig.json
{ "compilerOptions": { "baseUrl": "./", "module": "ESNext", "target": "ESNext", "lib": ["DOM", "ESNext"], "declaration": true, "strict": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "jsx": "preserve", "jsxFactory": "h", "jsxFragmentFactory": "Fragment", "moduleResolution": "node", "isolatedModules": true, "resolveJsonModule": true, "noUnusedLocals": true, "strictNullChecks": true, "forceConsistentCasingInFileNames": true, "paths": { "~/*": ["./*"], "@/*": ["./src/*"] }, "types": [ "vite/client", "node", "unplugin-icons/types/vue", "naive-ui/volar", "vue/ref-macros", "@vue-macros/reactivity-transform/macros-global" ], "plugins": [{ "name": "typescript-plugin-css-modules" }] }, "exclude": ["node_modules", "dist"], "include": ["./src/**/*.ts", "./src/**/*.vue", "./src/**/*.d.ts"] }
The text was updated successfully, but these errors were encountered:
Remove shims-vue.d.ts
shims-vue.d.ts
Sorry, something went wrong.
@so1ve Huh ... Like a rocket! ❤️
@Joseph-Wheat-Carryier what is shims-vue.d.ts for?
Such a pain getting simple go to definition working in nuxt.....nextjs never had this problem
No branches or pull requests
It will go to shims-vue.d.ts aflter command + click "*.vue" tags.
This is my shims-vue.d.ts
And this is tsconfig.json
The text was updated successfully, but these errors were encountered: