admin管理员组文章数量:1340974
When using javascript (es2015) imports the Intellisense seems to be broken.
When I am working in the same file, VSC autosuggests the methods from the object with the correct JSDoc information.
However, when importing the Class in another file, the Intellisense seems to be pletely broken ( david.david, wtf? ).
Do I need to adjust any settings in Visual Studio Code to get this working? I tried adjusted my jsconfig file to es2015 imports and es6 as but that didn't work.
My jsconfig.json:
{
"pilerOptions": {
"module": "es6"
}
}
When using javascript (es2015) imports the Intellisense seems to be broken.
When I am working in the same file, VSC autosuggests the methods from the object with the correct JSDoc information.
However, when importing the Class in another file, the Intellisense seems to be pletely broken ( david.david, wtf? ).
Do I need to adjust any settings in Visual Studio Code to get this working? I tried adjusted my jsconfig file to es2015 imports and es6 as but that didn't work.
My jsconfig.json:
{
"pilerOptions": {
"module": "es6"
}
}
Share
Improve this question
edited Apr 1, 2016 at 14:11
koningdavid
asked Apr 1, 2016 at 14:01
koningdavidkoningdavid
8,1137 gold badges37 silver badges47 bronze badges
2
- I had a lot of issues using es2015 in Code. Ended up scrapping it and went back to atom... – erichardson30 Commented Apr 1, 2016 at 14:06
- I have seem to found the issue here github./Microsoft/vscode-react-native/issues/61 it's a known bug – koningdavid Commented Apr 1, 2016 at 14:17
1 Answer
Reset to default 11Because you are using export
without default
you need to enable allowSyntheticDefaultImports
{
"pilerOptions": {
"target": "es6",
"allowSyntheticDefaultImports": true
}
}
The same occurs with
import fs from 'fs';
import axios from 'axios';
And others.
本文标签: javascriptIntellisense not working with imports in Visual Studio CodeStack Overflow
版权声明:本文标题:javascript - Intellisense not working with imports in Visual Studio Code - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743612416a2510224.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论