Urara-Blog/node_modules/.pnpm-store/v3/files/e9/23eab715b0febeb72e33b23081bf6bfafa36e655baff0d45ad77de9c985cdb80c5a58f734f64b0d8a65ba360c5989e65acd01a10471f53c577d36449006c1c
2022-08-14 01:14:53 +08:00

17 lines
546 B
Text

export interface RollupDynamicImportVarsOptions {
/**
* Files to include in this plugin (default all).
* @default []
*/
include?: string | RegExp | (string | RegExp)[]
/**
* Files to exclude in this plugin (default none).
* @default []
*/
exclude?: string | RegExp | (string | RegExp)[]
/**
* By default, the plugin quits the build process when it encounters an error. If you set this option to true, it will throw a warning instead and leave the code untouched.
* @default false
*/
warnOnError?: boolean
}