From af57ef9d9372d3caaa877e84b6589fb7c2eb8be3 Mon Sep 17 00:00:00 2001 From: "Ghislain B." Date: Sat, 14 Dec 2024 01:09:21 -0500 Subject: [PATCH] chore: enable TypeScript verbatimModuleSyntax flag (#1778) --- tsconfig.base.json | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index 135c8816a..d0efb4d57 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -3,16 +3,9 @@ "module": "esnext", "moduleResolution": "node", "target": "es2021", - "lib": [ - "es2021", - "dom" - ], - "types": [ - "node" - ], - "typeRoots": [ - "./node_modules/@types" - ], + "lib": ["es2021", "dom"], + "types": ["node"], + "typeRoots": ["./node_modules/@types"], "pretty": true, "importHelpers": true, "allowSyntheticDefaultImports": true, @@ -29,6 +22,7 @@ "skipLibCheck": true, "preserveConstEnums": true, "stripInternal": true, - "strict": true + "strict": true, + "verbatimModuleSyntax": true } }