UNPKG

508 BTypeScriptView Raw
1import { Plugin } from 'rollup';
2/**
3 * rollup-plugin-entrypoint-alias
4 *
5 * Aliases any deep imports from a package to the package name, so that
6 * chunking can happen more accurately.
7 *
8 * Example: lit-element imports from both 'lit-html' & 'lit-html/lit-html.js'.
9 * Even though both eventually resolve to the same place, without this plugin
10 * we lose the ability to mark "lit-html" as an external package.
11 */
12export declare function rollupPluginEntrypointAlias({ cwd }: {
13 cwd: string;
14}): Plugin;