ml-model-loader/node_modules/eslint-import-resolver-node
Lilith 8f4a35ba79 chore: add publishConfig to prevent public npm publishing
All @lilith/* packages should publish to forge.nasty.sh only.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-03 00:42:23 -08:00
..
node_modules/debug chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
index.js chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
LICENSE chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
package.json chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00
README.md chore: add publishConfig to prevent public npm publishing 2026-01-03 00:42:23 -08:00

eslint-import-resolver-node

npm

Default Node-style module resolution plugin for eslint-plugin-import.

Published separately to allow pegging to a specific version in case of breaking changes.

Config is passed directly through to resolve as options:

settings:
  import/resolver:
    node:
      extensions:
        # if unset, default is just '.js', but it must be re-added explicitly if set
        - .js
        - .jsx
        - .es6
        - .coffee

      paths:
        # an array of absolute paths which will also be searched
        # think NODE_PATH
        - /usr/local/share/global_modules

      # this is technically for identifying `node_modules` alternate names
      moduleDirectory:

        - node_modules # defaults to 'node_modules', but...
        - bower_components

        - project/src  # can add a path segment here that will act like
                       # a source root, for in-project aliasing (i.e.
                       # `import MyStore from 'stores/my-store'`)

or to use the default options:

settings:
  import/resolver: node