From 8fa141da77fdc8f9817db27abac0dff593277f52 Mon Sep 17 00:00:00 2001 From: Vincent Kocupyr Date: Tue, 7 May 2019 16:46:58 +0200 Subject: [PATCH] feat: Support exportNamespaceFrom in parser --- src/parsers/parse_to_ast.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parsers/parse_to_ast.js b/src/parsers/parse_to_ast.js index 5cf2a16..6b8065b 100644 --- a/src/parsers/parse_to_ast.js +++ b/src/parsers/parse_to_ast.js @@ -13,6 +13,7 @@ function getParserOpts(file) { plugins: [ 'asyncGenerators', 'exportDefaultFrom', + 'exportNamespaceFrom', 'optionalChaining', 'classConstructorCall', 'classPrivateProperties',