MCPcopy
hub / github.com/rolldown/tsdown / ImportGlobOptions

Interface ImportGlobOptions

client.d.ts:1–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1interface ImportGlobOptions<Eager extends boolean> {
2 /**
3 * Import as static or dynamic
4 *
5 * @default false
6 */
7 eager?: Eager
8 /**
9 * Import only the specific named export. Set to `default` to import the default export.
10 */
11 import?: string
12 /**
13 * Custom queries
14 */
15 query?: string | Record<string, string | number | boolean>
16 /**
17 * Search files also inside `node_modules/` and hidden directories (e.g. `.git/`). This might have impact on performance.
18 *
19 * @default false
20 */
21 exhaustive?: boolean
22 /**
23 * Base path to resolve relative paths.
24 */
25 base?: string
26}
27
28type GeneralImportGlobOptions = ImportGlobOptions<boolean>
29

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…