From bb88a6d9db92e60ba564ca0dfadc67638bc8d4be Mon Sep 17 00:00:00 2001 From: jfh Date: Thu, 10 Sep 2020 00:49:47 +0200 Subject: [PATCH] no transformation for systemJS --- es-dev-server.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-dev-server.config.js b/es-dev-server.config.js index 4fab4547..7849a363 100644 --- a/es-dev-server.config.js +++ b/es-dev-server.config.js @@ -9,6 +9,6 @@ module.exports = { moduleDirs: ['./node_modules'], compatibility: 'none', plugins: [ - wrapRollupPlugin(commonjs()) + wrapRollupPlugin(commonjs({exclude: ['src/editor/system', 'dist/editor/system/**']})) // excluding transformation of the systemJS bundle ] };