From 5266e446d15bed4edb65b54d050222ad4599d1f3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 13 Nov 2025 20:06:24 +0000 Subject: [PATCH 1/2] Initial plan From af01e02bb9e76add64b28e84dea18fbefb515714 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 13 Nov 2025 20:14:39 +0000 Subject: [PATCH 2/2] Remove deprecated TypeScript compiler options Remove esModuleInterop and allowSyntheticDefaultImports from tsconfig/compiler-options.json as they are deprecated in TypeScript 6.0. These options were set to false, which are the default values in TypeScript, so removing them maintains the same behavior while resolving the deprecation warnings. Co-authored-by: kategengler <444218+kategengler@users.noreply.github.com> --- package.json | 4 ++-- pnpm-lock.yaml | 6 ++++-- tsconfig/compiler-options.json | 2 -- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 6af501e31dc..dc18ddd9674 100644 --- a/package.json +++ b/package.json @@ -167,7 +167,7 @@ "terser": "^5.42.0", "testem": "^3.10.1", "testem-failure-only-reporter": "^1.0.0", - "typescript": "5.2", + "typescript": "5.2.2", "typescript-eslint": "^8.26.0", "vite": "^5.4.12" }, @@ -403,4 +403,4 @@ } }, "packageManager": "pnpm@10.5.0" -} +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f481afb3a47..6549613d273 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -314,7 +314,7 @@ importers: specifier: ^1.0.0 version: 1.0.0(handlebars@4.7.8)(underscore@1.13.7) typescript: - specifier: '5.2' + specifier: 5.2.2 version: 5.2.2 typescript-eslint: specifier: ^8.26.0 @@ -9658,6 +9658,7 @@ packages: puppeteer@24.3.0: resolution: {integrity: sha512-wYEx+NnEM1T6ncHB+IsTovUgx+JlZ0pv0sRGTb8IzoTeOILvyUcdU2h34bYEQ1iG5maz1VQA5eI4kzIyAVh90A==} engines: {node: '>=18'} + deprecated: < 24.15.0 is no longer supported hasBin: true q@0.9.7: @@ -11861,7 +11862,7 @@ snapshots: '@babel/code-frame': 7.26.2 '@babel/generator': 7.26.9 '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)(supports-color@8.1.1) + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9(supports-color@8.1.1))(supports-color@8.1.1) '@babel/helpers': 7.26.9 '@babel/parser': 7.26.9 '@babel/template': 7.26.9 @@ -12141,6 +12142,7 @@ snapshots: '@babel/traverse': 7.26.9(supports-color@8.1.1) transitivePeerDependencies: - supports-color + optional: true '@babel/helper-module-transforms@7.26.0(@babel/core@7.27.4)': dependencies: diff --git a/tsconfig/compiler-options.json b/tsconfig/compiler-options.json index fb32e8b897c..fb5d308a279 100644 --- a/tsconfig/compiler-options.json +++ b/tsconfig/compiler-options.json @@ -21,8 +21,6 @@ "noUnusedLocals": false, "noUncheckedIndexedAccess": true, "noUnusedParameters": true, - "esModuleInterop": false, - "allowSyntheticDefaultImports": false, "isolatedModules": true, "newLine": "LF",