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 文件


基础教程推荐
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01