Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

set same typing to include and exclude properties #385

Merged
merged 2 commits into from Apr 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.d.ts
Expand Up @@ -6,13 +6,13 @@ interface RollupCommonJSOptions {
* specifically include/exclude files
* @default undefined
*/
include?: string | RegExp,
include?: string | RegExp | ReadonlyArray<string | RegExp>,
/**
* non-CommonJS modules will be ignored, but you can also
* specifically include/exclude files
* @default undefined
*/
exclude?: ReadonlyArray<string | RegExp>
exclude?: string | RegExp | ReadonlyArray<string | RegExp>,
/**
* search for files other than .js files (must already
* be transpiled by a previous plugin!)
Expand Down