@haensl/rollup-plugin-local-resolve

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

Usage no npm install needed!

<script type="module">
  import haenslRollupPluginLocalResolve from 'https://cdn.skypack.dev/@haensl/rollup-plugin-local-resolve';
</script>

README

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

Changelog

License