From 8578aa26c16515787af3a531e15f8ec22026d066 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 27 May 2025 23:43:28 +0300 Subject: [PATCH] chore(types): disable verbatim module syntax for now --- apps/db-compare/tsconfig.app.json | 3 +-- apps/server-e2e/tsconfig.json | 3 +-- tsconfig.base.json | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/apps/db-compare/tsconfig.app.json b/apps/db-compare/tsconfig.app.json index c5944cc79..bdf9ba861 100644 --- a/apps/db-compare/tsconfig.app.json +++ b/apps/db-compare/tsconfig.app.json @@ -6,8 +6,7 @@ "node" ], "rootDir": "src", - "tsBuildInfoFile": "dist/tsconfig.app.tsbuildinfo", - "verbatimModuleSyntax": false + "tsBuildInfoFile": "dist/tsconfig.app.tsbuildinfo" }, "include": [ "src/**/*.ts" diff --git a/apps/server-e2e/tsconfig.json b/apps/server-e2e/tsconfig.json index 5e023db98..1df867f3a 100644 --- a/apps/server-e2e/tsconfig.json +++ b/apps/server-e2e/tsconfig.json @@ -3,8 +3,7 @@ "compilerOptions": { "allowJs": true, "outDir": "out-tsc/playwright", - "sourceMap": false, - "verbatimModuleSyntax": false + "sourceMap": false }, "include": [ "**/*.ts", diff --git a/tsconfig.base.json b/tsconfig.base.json index 87eba8adc..76d2e73fc 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -18,7 +18,7 @@ "strict": true, "target": "es2022", "customConditions": ["development"], - "verbatimModuleSyntax": true, + "verbatimModuleSyntax": false, // TODO: Re-enable it when migrating back to ESM. "resolveJsonModule": true, "downlevelIteration": true, "esModuleInterop": true,