From f514007d54ce42e21ac4c2d239f5d71172c16293 Mon Sep 17 00:00:00 2001 From: uzlopak Date: Tue, 18 Jan 2022 17:22:57 +0100 Subject: [PATCH] move "allowSyntheticDefaultImports" into "compilerOptions" in tsconfig.json --- test/typescript/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/typescript/tsconfig.json b/test/typescript/tsconfig.json index 70ca16895b7..ceb5701b9ed 100644 --- a/test/typescript/tsconfig.json +++ b/test/typescript/tsconfig.json @@ -1,5 +1,7 @@ { - "allowSyntheticDefaultImports": true, + "compilerOptions": { + "allowSyntheticDefaultImports": true + }, "esModuleInterop": true, "outDir": "test/dist", "strictNullChecks": true,