From d1c052451a28efae2100fa7e01ca071c33c7cb3d Mon Sep 17 00:00:00 2001 From: Harrison Ifeanyichukwu Date: Tue, 17 Sep 2019 15:18:57 +0200 Subject: [PATCH] fix: enable interop functionality by default --- README.md | 2 +- src/.buildrc.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1116e5d..121daa2 100644 --- a/README.md +++ b/README.md @@ -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`. diff --git a/src/.buildrc.ts b/src/.buildrc.ts index f674855..a3f50db 100644 --- a/src/.buildrc.ts +++ b/src/.buildrc.ts @@ -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'