我正在使用Webpack和Visual Studio Code,为了避免出现类似情况:
import { AuthenticationService } from '../../../services/authentication/service';
我在webpack.config上创建了别名,因此可以使用:
import { AuthenticationService } from 'services/authentication/service';
但是,这样做会导致Visual Code无法检测到我的代码,因此我失去了类的智能感知能力。
有没有人有解决方案,有没有办法使VS代码读取webpack.config并使用别名识别路径?
提前致谢
安装VSCode扩展PathIntellisense。
要打开VSCode设置文件,可以在macOS上按command+ ,(在Windows上为ctrl+ ,),在右上角找到“一对大括号按钮”,然后单击它。
在我的情况下,我想将符号
@
用作path的别名./src
。所以我将此配置添加到我的VSCode设置文件中:使用
${workspaceRoot}
时,路径应该是相对于当前项目的当前根。您可以在此处找到官方示例。
原始答案:
I use the VSCode extension PathIntellisense .
Configure this setting in my VSCode setting file.
Now VSCode could recognize the path with the alias.