UNPKG

2.3 kBTypeScriptView Raw
1/**
2Types from https://github.com/rollup/plugins/blob/master/packages/alias/types/index.d.ts
3Inlined because the plugin is bundled.
4
5https://github.com/rollup/plugins/blob/master/LICENSE
6
7The MIT License (MIT)
8
9Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
10
11Permission is hereby granted, free of charge, to any person obtaining a copy
12of this software and associated documentation files (the "Software"), to deal
13in the Software without restriction, including without limitation the rights
14to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15copies of the Software, and to permit persons to whom the Software is
16furnished to do so, subject to the following conditions:
17
18The above copyright notice and this permission notice shall be included in
19all copies or substantial portions of the Software.
20
21THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27THE SOFTWARE.
28*/
29
30import { PluginHooks } from 'rollup'
31
32export interface Alias {
33 find: string | RegExp
34 replacement: string
35 /**
36 * Instructs the plugin to use an alternative resolving algorithm,
37 * rather than the Rollup's resolver.
38 * @default null
39 */
40 customResolver?: ResolverFunction | ResolverObject | null
41}
42
43export type ResolverFunction = PluginHooks['resolveId']
44
45export interface ResolverObject {
46 buildStart?: PluginHooks['buildStart']
47 resolveId: ResolverFunction
48}
49
50/**
51 * Specifies an `Object`, or an `Array` of `Object`,
52 * which defines aliases used to replace values in `import` or `require` statements.
53 * With either format, the order of the entries is important,
54 * in that the first defined rules are applied first.
55 *
56 * This is passed to \@rollup/plugin-alias as the "entries" field
57 * https://github.com/rollup/plugins/tree/master/packages/alias#entries
58 */
59export type AliasOptions = readonly Alias[] | { [find: string]: string }