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": [] }