VSCode不会打开使用绝对PATH导入的文件


1

我有一个React应用程序。我正在导入一些组件,我想在导入中单击ALT +文件名以导航到它。(Linux Ubuntu)。Mapped it to Alt instead of CTRL

在具有相对路径的文件中:

import ComponentRelative from '../../somewhere';

它工作得很好。我按住Alt +点击ComponentRelataive它,它将我带到该文件。

现在在绝对路径上,这是行不通的。我假设这是因为VSCode没有在我的系统的根目录中启动。我可能错了。举个例子:

import ComponentAbsolute from 'common/components/ComponentAbsolute';

这不起作用。我尝试在VSCode文档中搜索某些内容,但在设置中找不到任何类似内容。有谁见过这个问题,并知道如何解决它。谢谢!!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.