From 6da749f7f26b557635ec96a81a7f7cf2c69b879c Mon Sep 17 00:00:00 2001 From: Ulysse Buonomo Date: Fri, 14 Jul 2017 10:01:01 -0400 Subject: [PATCH] docs(README): fix default value (`options.esModules`) (#68) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42442a0..579eedf 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ The loader supports all options supported by `istanbul-lib-instrument` |**`debug`**|`{Boolean}`|`false`|Turn on debugging mode| |**`compact`**|`{Boolean}`|`true`|Generate compact code| |**`autoWrap`**|`{Boolean}`|`false`|Set to `true` to allow return statements outside of functions| -|**`esModules`**|`{Boolean}`|`true`|Set to `true` to instrument ES2015 Modules| +|**`esModules`**|`{Boolean}`|`false`|Set to `true` to instrument ES2015 Modules| |**`coverageVariable`**|`{String}`|`__coverage__`|Name of global coverage variable| |**`preserveComments`**|`{Boolean}`|`false`|Preserve comments in `output`| |**`produceSourceMap`**|`{Boolean}`|`false`|Set to `true` to produce a source map for the instrumented code|