Skip to content

Rollup plugin to resolve folder imports without explicitly stating the file.

License

Notifications You must be signed in to change notification settings

haensl/rollup-plugin-local-resolve

Repository files navigation

rollup-plugin-local-resolve

NPM

npm version

CircleCI

Rollup plugin to resolve relative imports from local folders without stating the index file. E.g.

import something from '../some-dir'.

Quick start

  1. Install the plugin
npm i -D @haensl/rollup-plugin-local-resolve
  1. Use it in your rollup.config.js
import localResolve from '@haensl/rollup-plugin-local-resolve';

export default {
  input: 'src/index.js',
  plugins: [
    localResolve()
  ],
  output: [
    {
      file: 'dist/index.cjs.js',
      format: 'cjs'
    },
    {
      file: 'dist/index.es.js',
      format: 'es'
    }
  ]
}

Credits

About

Rollup plugin to resolve folder imports without explicitly stating the file.

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published