UNPKG

esbuild-plugin-alias-path

Version:
12 lines (8 loc) 269 B
import { Plugin } from 'esbuild'; interface AliasPathOptions { alias?: Record<string, string>; skip?: boolean; cwd?: string; } declare const aliasPath: (options?: AliasPathOptions) => Plugin; export { AliasPathOptions, aliasPath, aliasPath as default };