From bb21ec1415668b5da559b8adbdc79e1a02c02e48 Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Sat, 29 Jun 2024 08:51:10 -0700 Subject: [PATCH] workaround typescript breaking change --- e2e/external_dep/tsconfig.json | 8 +++++--- e2e/worker/composite/tsconfig.json | 8 +++++--- e2e/worker/feature/tsconfig.json | 6 ++++-- e2e/worker/tsconfig.json | 9 ++++----- 4 files changed, 18 insertions(+), 13 deletions(-) diff --git a/e2e/external_dep/tsconfig.json b/e2e/external_dep/tsconfig.json index 54d71edb..9214ba1c 100644 --- a/e2e/external_dep/tsconfig.json +++ b/e2e/external_dep/tsconfig.json @@ -1,5 +1,7 @@ { - "compilerOptions": { - "composite": true, - }, + "compilerOptions": { + "composite": true + }, + // Workaround https://github.com/microsoft/TypeScript/issues/59036 + "exclude": [] } diff --git a/e2e/worker/composite/tsconfig.json b/e2e/worker/composite/tsconfig.json index 5ae1f35d..9214ba1c 100644 --- a/e2e/worker/composite/tsconfig.json +++ b/e2e/worker/composite/tsconfig.json @@ -1,5 +1,7 @@ { "compilerOptions": { - "composite": true, - } -} \ No newline at end of file + "composite": true + }, + // Workaround https://github.com/microsoft/TypeScript/issues/59036 + "exclude": [] +} diff --git a/e2e/worker/feature/tsconfig.json b/e2e/worker/feature/tsconfig.json index cf490dd4..8f9ddba5 100644 --- a/e2e/worker/feature/tsconfig.json +++ b/e2e/worker/feature/tsconfig.json @@ -4,5 +4,7 @@ "module": "ES2020", "moduleResolution": "node", "lib": ["ES2015"] - } -} \ No newline at end of file + }, + // Workaround https://github.com/microsoft/TypeScript/issues/59036 + "exclude": [] +} diff --git a/e2e/worker/tsconfig.json b/e2e/worker/tsconfig.json index a02f6a16..43ff0539 100644 --- a/e2e/worker/tsconfig.json +++ b/e2e/worker/tsconfig.json @@ -2,9 +2,8 @@ "compilerOptions": { "module": "ES2020", "moduleResolution": "node", - "lib": [ - "ES2015", - "DOM" - ] - } + "lib": ["ES2015", "DOM"] + }, + // Workaround https://github.com/microsoft/TypeScript/issues/59036 + "exclude": [] }