ChristianKohler/NpmIntellisense

Go to defenition (F12) doesn't apply *.es6, *.mjs, etc.

Closed this issue · 1 comments

Steps to Reproduce:

  1. Create foo.mjs:
    /** @param {string} name */
    export default function bar(name) {
      return 'hi'
    }
  1. Create use-it.mjs:
    import bar from './foo.mjs'

    // Then...
  1. ...type bar(
  2. Go to defenition (F12) doesn't work
  3. Renaming foo.mjs to foo.js all is ok.

How is this related to this extension?