vscode的 automatic Imports 功能在不同文件夹表现不同
已经禁用了所有插件
我的jsconfig配置:
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/gulp/*": ["script/gulp/*"],
"@/script/*": ["script/*"],
"@/src/*": ["src/*"]
}
},
"exclude": ["node_modules", "dist"]
}
我项目的目录结构
├── script
│ ├── gulp
│ │ ├── task
│ │ │ ├── components
│ │ │ │ └── index.js
│ │ │ └── ...
│ │ └── ...
│ │
│ ├── utils
│ │ ├── yaml.js <-- 这个文件里的automatic import功能表现是我想要的
│ │ └── ...
│ └── ...
│
├── src
│ ├── app.js <-- 我不想要这个文件里的automatic import功能表现
│ └── ...
│
├── jsconfig.json
├── gulpfile.babel.js
└── ...
在script目录下使用automatic import功能(我想要的表现)
在src目录下使用automatic import功能(我不想要的表现)
不知道是哪里配置得不对.
有谁能帮忙看下.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题已在vscode github的issues中解决
https://github.com/microsoft/...