在自动完成方面,我一直在打字稿+ VSCode上遇到烦人的麻烦:
每当我尝试自动完成时,它都不会带来正确的路径。如果我在./src/components/foo
,并且键入Bar
从'./src/components/bar/index.tsx'获取它,而不是用import {Bar} from '../bar'
自动完成,我总是得到{ {1}}
我的import {Bar} from 'src/components/bar'
:
tsconfig.json
答案 0 :(得分:1)
更新Vscode设置
在VScode文件上>首选项>设置>用户设置
"typescript.preferences.importModuleSpecifier": "relative"
答案 1 :(得分:1)
从"baseUrl": ".",
中删除tsconfig.json
对我来说解决了这个问题。