npm.io
1.2.0 • Published 3 years ago

eslint-import-resolver-workspaces

Licence
MIT
Version
1.2.0
Deps
4
Size
8 kB
Vulns
0
Weekly
0
Stars
18

eslint-import-resolver-workspaces

A resolver plugin for eslint-plugin-import that resolves yarn workspaces packages to their source code so that local development doesn't require rebuilding dependent packages on each change.

// .eslintrc
{
  "settings": {
    "workspaces": {
      "extensions": [".mjs", ".js", ".ts", ".tsx", ".json"],
      "sources": {
        "my-package/lib/*": ["packages/my-package/src/*"]
      }
    }
  }
}

The sources option follows the typescript paths format for rewriting file paths.

You can also specify sources in your root package.json under workspace-sources.