Intellij Idea 智能理念:“找不到要转到的声明”-新javascript项目中的消息

v8wbuo2f  于 2022-12-26  发布在  Java
关注(0)|答案(1)|浏览(1047)

当尝试按住Ctrl键并单击导入模块的路径时,我收到“找不到要转到的声明”消息
如果路径包含“@”符号作为根引用,则显示此消息。
这种情况发生在我的新项目中,旧项目中没有这样的问题。
如何解决这个问题?

jm2pwxwz

jm2pwxwz1#

解决方案如下:
首先作废现金:菜单File-〉Invalidate Caches

然后设置webpack设置

according to https://www.jetbrains.com/help/idea/using-webpack.html#edit_webpack_configuration_file
同时将\src\dir标记为源根目录

upd:还要确保文件/.idea/workspace.xml中属性"设置.编辑器.选定.可配置"的值="首选项.插件管理器":

<component name="PropertiesComponent">
    ...
    <property name="settings.editor.selected.configurable" value="preferences.pluginManager" />
    ...
</component>

upd:不确定此步骤...

相关问题