- VSCode Version: 1.24.0
- OS Version: Windows 8.1
This problem was first noticed a couple days ago on 1.23.1, but I waited for the new release.
Steps to Reproduce:
- Have a module file with an export, say
export.js
export function exampleExport() { }
- In another blank js file, start typing the name of your export and autocomplete it.
exam [tab] becomes
import { exampleExport } from "./export";
exampleExport
Note that it it's trying to import from "./export", not from "./export.js". This breaks the import, at least in a browser context.
Does this issue occur when all extensions are disabled? Yes
This problem was first noticed a couple days ago on 1.23.1, but I waited for the new release.
Steps to Reproduce:
export.jsexam[tab] becomesNote that it it's trying to import from
"./export", not from"./export.js". This breaks the import, at least in a browser context.Does this issue occur when all extensions are disabled? Yes