From 97f4c1a28d2fc4700a526b07c5c27411213db7df Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 18 Mar 2023 10:51:10 +0100 Subject: [PATCH] test: fix TS options MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 82b4e8ef..f2ad5e06 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -71,7 +71,8 @@ "exclude": ["ui/web/**/*.ts"], "ts-node": { "compilerOptions": { - "module": "commonjs" + "module": "commonjs", + "verbatimModuleSyntax": false, } } } -- 2.34.1