vscode quot;Intellisensequot; and quot;Go to definitionquot; for not js/ts files(vscode“智能感知和“转到定义对于非 js/ts 文件)
问题描述
在前端开发中,我们经常不仅在 javasctipt 中导入 javascript/typescript 文件.我们使用两个别名和相对路径导入此类文件.
例子:
从'~/graphql/queries/brands.gql'导入brandQuery;从 '~/components/common/button/index.vue' 导入按钮;从'./list/index.vue'导入组件;
默认情况下,当我们导入此类文件时,VS Code 不支持非 js/ts 扩展 - 没有智能感知".和转到 Definitoon"对于此类文件.
我尝试了这样的扩展:
<块引用>这可能在使用 ctrl/cmd 时最有用单击以浏览您的代码.
In frontend-development we often import not only javascript/typescript files in javasctipt. We import such files using both aliases an relative paths.
Example:
import brandsQuery from '~/graphql/queries/brands.gql';
import Button from '~/components/common/button/index.vue';
import Component from './list/index.vue';
By default VS Code doesn't support not js/ts extensions when we import such files - there are no "Intellisense" and "Go to Definitoon" for such files.
I tried such extensions: Path intellisense and Path autocomplete
VS Code settings to support alias:
"path-intellisense.mappings": {
"~/": "${workspaceFolder}",
},
or
"path-autocomplete.pathMappings": {
"~/": "${folder}/",
}
With these extensions we have autocomplete when we write import string. Also for relative paths "Go To Definition" works.
But "Go To Definition" doesn't work for not js-ts files imported using alias.
Do you know some way to have both "Intellisense", "Go To Definition" for all extensions that I need in my project?
See https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_57.md#go-to-definition-for-non-jsts-files
Many modern JS bundlers and frameworks use
import
statements to import assets such as images and stylesheets. We now support navigating through these imports withgo to definition
:
This is probably most useful when using ctrl/cmd click to navigate through your code.
这篇关于vscode“智能感知"和“转到定义"对于非 js/ts 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:vscode“智能感知"和“转到定义"对于非 js/ts 文件
基础教程推荐
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01