1.0.2 • Published 5 years ago
rollup-plugin-searchpaths v1.0.2
rollup-plugin-searchpaths
A Rollup plugin to add additional search paths for imports.
Overview
Any imports from files that don't start with '.' or '/' will be searched for in the provided list of paths.
Install
Using npm:
npm install rollup-plugin-searchpathsUsage
In your rollup.config.js :
import searchpaths from 'rollup-plugin-searchpaths'
export default {
    ...
    plugins: [
        searchpaths({
            paths: ['app/', '../common/'],
            extensions: ['ts', 'js', 'jsx'],
        }),
    ],
}Options
paths
Type: string[]
Default: []
A list of paths to search for packages.
The list will be normalised and resolved relative to the current path.
extensions
Type: string[]
Default ['js']
A list of file extensions to look for, in order of priority, when an import doesn't specify one.