@haensl/rollup-plugin-local-resolve

1.1.12 • Public • Published

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

Package Sidebar

Install

npm i @haensl/rollup-plugin-local-resolve

Weekly Downloads

26

Version

1.1.12

License

MIT

Unpacked Size

10.5 kB

Total Files

9

Last publish

Collaborators

  • haensl