From 740d4602ad8fb56408b267c29a84f45b615e384c Mon Sep 17 00:00:00 2001 From: Marco Ippolito Date: Fri, 23 Aug 2024 10:00:39 +0200 Subject: [PATCH] module: use amaro default transform values --- lib/internal/modules/helpers.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/internal/modules/helpers.js b/lib/internal/modules/helpers.js index d805572cc8bb69..bba89a970ba3e0 100644 --- a/lib/internal/modules/helpers.js +++ b/lib/internal/modules/helpers.js @@ -360,10 +360,6 @@ function stripTypeScriptTypes(source, filename) { mode: typeScriptParsingMode, sourceMap: sourceMapEnabled, filename, - // Transform option is only applied in transform mode. - transform: { - verbatimModuleSyntax: true, - }, }; const { code, map } = parse(source, options); if (map) {