Skip to content

Commit

Permalink
fix: enable interop functionality by default
Browse files Browse the repository at this point in the history
  • Loading branch information
teclone committed Sep 17, 2019
1 parent ee5b227 commit d1c0524
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ You can override these options by creating and placing a `.buildrc.js` file in y

- **uglify\***: defines if the build should be minified. **Note that when running in production environment, this value is automatically set to true**. You must supply an uglifier plugin for it to work. Default value is `false`.

- **interop**: defines if `rollup.js` interop functionality should be enabled.
- **interop**: defines if `rollup.js` interop functionality should be enabled. defaults to true.

- **sourcemap**: defines if the build should produce source maps. value can be `true`, `"inline"` or `false`. Default value is `true`.

Expand Down
2 changes: 1 addition & 1 deletion src/.buildrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const config: Config = {
/**
* boolean indicating if the interop rollup setting should be enabled
*/
interop: false,
interop: true,

/**
* boolean indicating if sourcemap should be generated, can be true, false, or 'inline'
Expand Down

0 comments on commit d1c0524

Please sign in to comment.