You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to use ignoreSideEffectsForRoot throws a typescript error:
Object literal may only specify known properties, and 'ignoreSideEffectsForRoot' does not exist in type 'RollupNodeResolveOptions'.
Additional Information
You don't actually need to reproduce the issue; it's enough to look inside the types file - RollupNodeResolveOptions interface doesn't have ignoreSideEffectsForRoot property
The text was updated successfully, but these errors were encountered:
Expected Behavior
While using rollup config in typescript, I would expect a config object of
@rollup/plugin-node-resolve
to be properly typed and to includeignoreSideEffectsForRoot
property, as it's documented: https://github.com/rollup/plugins/tree/master/packages/node-resolve#ignoresideeffectsforrootActual Behavior
Trying to use
ignoreSideEffectsForRoot
throws a typescript error:Additional Information
You don't actually need to reproduce the issue; it's enough to look inside the types file -
RollupNodeResolveOptions
interface doesn't haveignoreSideEffectsForRoot
propertyThe text was updated successfully, but these errors were encountered: