no-missing-import
UnreleasedConfiguration
Disallow imports and re-exports whose modules cannot be found.
The rule checks static import, export ... from, and dynamic import() with
literal arguments. It checks installed packages and their exports maps as
well as local files. Declaring a dependency in package.json does not make an
uninstalled package available.
Examples
Incorrect:
Correct, when existing.js and installed-package exist:
Relative directory imports such as import './directory' are reported even
when the directory contains index.js or a package entry point. Import that
file explicitly. Bare package imports can use package entry points.
Runtime imports of Node builtins, data: URLs, and HTTP or HTTPS URLs are
accepted. Expressions such as import(variable) and template literals are
outside this rule's checks. The rule provides no fixes or suggestions.
Options
allowModules: package roots to accept without resolving them, including scoped packages andvirtual:modules. Allowing a package also allows its internal paths, such aselectron/main. The default is an empty list.resolvePaths: additional base directories, searched before the importing file's directory. Relative entries use the working directory, orsettings.cwdwhen configured. The default is an empty list.tryExtensions: extensions to try for extensionless imports. The default is['.js', '.json', '.node', '.mjs', '.cjs']. An empty list disables extension guessing; explicit filenames can still resolve.resolverConfig.modules: a module directory string or array, such as'node_modules'or['custom_modules', 'node_modules']. The default is['node_modules']. Relative names are searched up the directory tree; absolute directories are also accepted. An empty array disables package lookup without disabling relative file imports.ignoreTypeImport: skips wholeimport typedeclarations whentrue. The default isfalse. Type re-exports and individualtypespecifiers in a value import are still checked, matching upstream.typescriptExtensionMap: overrides TypeScript extension substitution. Accepts[sourceExtension, emittedExtension]pairs, orpreserve,react,react-jsx,react-jsxdev, andreact-native. An empty array disables substitution.tsconfigPath: selects a TypeScript config for extension substitution. The nearesttsconfig.jsonsupplies the default mapping and path aliases. Relative values use the working directory, independently ofsettings.cwd. An explicit extension map takes precedence overtsconfigPath.
Except for ignoreTypeImport, these options can also be supplied through
settings.node. Rule options take precedence over shared settings. Legacy
settings.n is accepted with the same precedence as upstream. Explicit empty
lists override shared lists.
In TypeScript files, the default mapping substitutes .ts for .js, .mts
for .mjs, .cts for .cjs, and .tsx for .jsx in preserve mode or .js
in React modes. With allowImportingTsExtensions, the default extension list
also includes .ts, .mts, and .cts, and emitted extensions are not
substituted. Type-only imports also activate the types export condition.
Differences from upstream
Only resolverConfig.modules is supported. If you map virtual to
./local.js with resolverConfig.alias, rslint may report import 'virtual'
as missing even when the target file exists. For local aliases in TypeScript
files, use compilerOptions.paths instead.
Some invalid package.json#imports mappings, such as
"#entry": [null, "./entry.js"], produce different error messages. Both
linters report an error; rslint reports that the import cannot be resolved.
An unpaired Unicode surrogate in a module name, such as import('\uD800'),
may appear as replacement characters in the reported name. File lookup still
matches Node.js: import './\uD800.js' resolves an existing file named �.js.