importmap-eslint-resolver
Import maps resolution for ESLint.
Table of contents
Presentation
Import maps are used to remap import to somewhere else. For instance the following importmap allows to remap "foo"
to "./foo.js"
.
{
"imports": {
"foo": "./foo.js"
}
}
By providing this importmap to the browser or Node.js, js imports resolution becomes aware of the importmap file remappings. You can write the following js file and it would search for file at "./foo.js"
.
import { value } from "foo"
console.log(value)
If you use import/no-unresolved
rule from eslint-plugin-import
these imports are reported as not resolved as shown in images below.
This is why @jsenv/importmap-eslint-resolver
exists: to make import/no-unresolved
compatible with importmap file.
— see ESLint website
— see eslint-plugin-import on github
— see importmap spec on github
Installation
Follow the steps below to enable importmap resolution for ESLint.
Install eslint-plugin-import
If you already use this ESLint plugin you can skip this step.
npm install --save-dev eslint-plugin-import
Install importmap-eslint-resolver
npm install --save-dev @jsenv/importmap-eslint-resolver
Configure eslint
- Your eslint config must enable
eslint-plugin-import
- Your eslint config must use
@jsenv/importmap-eslint-resolver
resolver
It means your minimal .eslintrc.cjs
file looks like this:
module.exports = {
plugins: ["import"],
settings: {
"import/resolver": {
[require.resolve("@jsenv/importmap-eslint-resolver")]: {
projectDirectoryUrl: __dirname,
},
},
},
}
Set importmap file path
By default we will search for a file in your project directory named import-map.importmap
. If the importmap file is located somewhere else you can use importMapFileRelativeUrl
parameter to tell us where to look at.
module.exports = {
plugins: ["import"],
settings: {
"import/resolver": {
[require.resolve("@jsenv/importmap-eslint-resolver")]: {
projectDirectoryUrl: __dirname,
importMapFileRelativeUrl: "./project.importmap",
},
},
},
}
Bare specifier
A specifier is what is written after the from keyword in an import statement.
import value from "specifier"
If there is no mapping of "specifier"
to "./specifier.js"
the imported file will not be found.
This is because import map consider "specifier"
as a special kind of specifier called bare specifier.
And every bare specifier must have a mapping or it cannot be resolved.
To fix this either add a mapping or put explicitely "./specifier.js"
.
Please note that "specifier.js"
is also a bare specifier. You should write "./specifier.js"
instead.
Extensionless import
Extensionless import means an import where the specifier omits the file extension.
import { value } from "./file"
But these type of specifier are problematic: you don't know where to look at for the corresponding file.
- Is it
./file
? - Is it
./file.js
? - Is it
./file.ts
?
The best solution to avoid configuring your brain and your browser is to keep the extension on the specifier.
- import { value } from './file'
+ import { value } from './file.js'
But if for some reason this is problematic you can still configure @jsenv/importmap-eslint-resolver
to understand these extensionless specifiers.
module.exports = {
plugins: ["import"],
settings: {
"import/resolver": {
[require.resolve("@jsenv/importmap-eslint-resolver")]: {
projectDirectoryUrl: __dirname,
defaultExtension: true,
},
},
},
}
By passing defaultExtension: true
you tell @jsenv/importmap-eslint-resolver
to automatically add the importer extension when its omitted.
import { value } from "./file"
If written in index.js
, searches file at file.js
.
If written in index.ts
, searches file at file.ts
.