admin管理员组文章数量:1341395
I'm working in a Vue.js project that uses Webpack. Many imports use @
as an alias to src
directory. How can VSCode be configured to resolve the alias and make intellisense work with those imports?
I have found in many places on the web how to setup aliases in VSCode, using jsconfig.json
or tsconfig.json
. I have tried configuring in both files and nothing seems to work.
My jsconfig.json:
{
"pilerOptions": {
"target": "es6",
"allowSyntheticDefaultImports": false,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["node_modules", "dist"]
}
I expected VSCode to resolve the alias in the path, making intellisense and peeking definition work.
I'm working in a Vue.js project that uses Webpack. Many imports use @
as an alias to src
directory. How can VSCode be configured to resolve the alias and make intellisense work with those imports?
I have found in many places on the web how to setup aliases in VSCode, using jsconfig.json
or tsconfig.json
. I have tried configuring in both files and nothing seems to work.
My jsconfig.json:
{
"pilerOptions": {
"target": "es6",
"allowSyntheticDefaultImports": false,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["node_modules", "dist"]
}
I expected VSCode to resolve the alias in the path, making intellisense and peeking definition work.
Share edited Jul 16, 2019 at 19:43 Gabriel Mineiro asked Jul 16, 2019 at 17:09 Gabriel MineiroGabriel Mineiro 911 silver badge4 bronze badges1 Answer
Reset to default 12In my current project, I have a jsconfig.json
at the root containing this :
{
"pilerOptions": {
"target": "es2017",
"allowSyntheticDefaultImports": false,
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
}
},
"exclude": ["node_modules", "dist", "docs"]
}
and it works for me.
I don't know exactly what moduleResolution
is doing in your conf, and my baseUrl
is the root folder in my case.
The related doc for vs code : https://code.visualstudio./docs/languages/jsconfig#_using-webpack-aliases
Try it and tell me if it's working better ?
本文标签: javascriptHow to make VSCode resolve quotquot in importsStack Overflow
版权声明:本文标题:javascript - How to make VSCode resolve "@" in imports - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743673943a2519996.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论