Skip to content

Commit

Permalink
Make all properties in TreeshakingOptions optional (#2779)
Browse files Browse the repository at this point in the history
This is what the docs are telling me the types should be
  • Loading branch information
ndelangen authored and lukastaegert committed Mar 28, 2019
1 parent e9e9636 commit b3578ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rollup/types.d.ts
Expand Up @@ -254,9 +254,9 @@ export interface Plugin {
}

export interface TreeshakingOptions {
annotations: boolean;
propertyReadSideEffects: boolean;
pureExternalModules: boolean;
annotations?: boolean;
propertyReadSideEffects?: boolean;
pureExternalModules?: boolean;
}

export type ExternalOption = string[] | IsExternal;
Expand Down

0 comments on commit b3578ae

Please sign in to comment.