forked from unplugin/unplugin-auto-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
58 lines (52 loc) · 1.2 KB
/
types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import { Arrayable } from '@antfu/utils'
import { FilterPattern } from '@rollup/pluginutils'
import { PresetName } from './presets'
export type ImportNameAlias = [string, string]
export type ImportInfo = {
module: string
name: string
from?: string
}
/**
* module, name, alias
*/
export type ImportsMap = Record<string, (string | ImportNameAlias)[]>
/**
* name, meta
*/
export type ImportsFlatMap = Record<string, ImportInfo>
export interface Options {
/**
* Preset names or custom imports map
*
* @default []
*/
imports?: Arrayable<ImportsMap | PresetName>
/**
* Filepath to generate corresponding .d.ts file.
* Set `false` to disable.
*
* @default './global-imports.d.ts'
*/
dts?: string | false
/**
* Rules to include transforming target.
*
* @default [/\.[jt]sx?$/, /\.vue\??/]
*/
include?: FilterPattern
/**
* Rules to exclude transforming target.
*
* @default [/node_modules/, /\.git/]
*/
exclude?: FilterPattern
}
export interface TransformOptions {
imports: ImportsFlatMap
matchRE: RegExp
}
export interface ResolvedOptions extends Omit<Options, 'imports'>, TransformOptions {
idFilter: (id: string) => boolean
}
export { PresetName }