commit ec32b7cf860c4eeb874da6a6d8d8b951cabc9fd0 parent 67061862613d4312e9cf500828a46009781cc7c3 Author: Florian Dold <dold@taler.net> Date: Sun, 9 Aug 2026 18:25:55 +0200 Upgrade to TypeScript 7 Diffstat:
26 files changed, 348 insertions(+), 123 deletions(-)
diff --git a/package.json b/package.json @@ -14,7 +14,7 @@ "devDependencies": { "esbuild": "^0.28.0", "prettier": "^3.8.3", - "typescript": "^6.0.3" + "typescript": "^7.0.2" }, "packageManager": "pnpm@10.33.4" } diff --git a/packages/anastasis-cli/package.json b/packages/anastasis-cli/package.json @@ -35,7 +35,7 @@ "devDependencies": { "@types/node": "^20.19.41", "prettier": "^3.8.3", - "typescript": "^6.0.3" + "typescript": "^7.0.2" }, "dependencies": { "@gnu-taler/anastasis-core": "workspace:*", diff --git a/packages/anastasis-core/package.json b/packages/anastasis-core/package.json @@ -19,7 +19,7 @@ "type": "module", "devDependencies": { "@types/node": "^20.19.41", - "typescript": "^6.0.3" + "typescript": "^7.0.2" }, "dependencies": { "@gnu-taler/taler-util": "workspace:*", diff --git a/packages/anastasis-webui/package.json b/packages/anastasis-webui/package.json @@ -34,6 +34,6 @@ "bulma-radio": "^1.1.1", "chai": "^6.2.2", "sass": "1.56.1", - "typescript": "^6.0.3" + "typescript": "^7.0.2" } } diff --git a/packages/challenger-webui/package.json b/packages/challenger-webui/package.json @@ -27,7 +27,7 @@ "chai": "^6.2.2", "esbuild": "^0.28.0", "tailwindcss": "3.4.17", - "typescript": "6.0.3" + "typescript": "7.0.2" }, "pogen": { "domain": "challenger-ui" diff --git a/packages/idb-bridge/package.json b/packages/idb-bridge/package.json @@ -29,7 +29,7 @@ "@types/better-sqlite3": "^7.6.8", "@types/node": "^20.19.41", "prettier": "^3.8.3", - "typescript": "^6.0.3" + "typescript": "^7.0.2" }, "dependencies": { "tslib": "^2.6.2" diff --git a/packages/libeufin-bank-webui/package.json b/packages/libeufin-bank-webui/package.json @@ -34,7 +34,7 @@ "chai": "^6.2.2", "esbuild": "^0.28.0", "tailwindcss": "3.4.17", - "typescript": "6.0.3" + "typescript": "7.0.2" }, "pogen": { "domain": "bank" diff --git a/packages/merchant-backend-ui/package.json b/packages/merchant-backend-ui/package.json @@ -32,7 +32,7 @@ "preact-render-to-string": "^5.1.19", "ts-node": "^10.9.1", "tslib": "2.6.2", - "typescript": "6.0.3" + "typescript": "7.0.2" }, "pogen": { "domain": "taler-merchant-backend-ui" diff --git a/packages/pogen/package.json b/packages/pogen/package.json @@ -8,14 +8,14 @@ "license": "GPL-2.0+", "scripts": { "clean": "rm -rf lib", - "test": "tsc && node --test 'lib/*.test.js' 'lib/**/*.test.js'", - "build": "tsc", + "test": "tsc6 && node --test 'lib/*.test.js' 'lib/**/*.test.js'", + "build": "tsc6", "build:with-deps": "pnpm --filter \"{.}...\" run build" }, "type": "module", "devDependencies": { "@types/gettext-parser": "^4.0.3", - "typescript": "^6.0.3" + "typescript": "npm:@typescript/typescript6@^6.0.2" }, "dependencies": { "@types/node": "^20.19.41", diff --git a/packages/pogen/src/dumpTree.ts b/packages/pogen/src/dumpTree.ts @@ -25,7 +25,7 @@ import { readFileSync } from "node:fs"; import { execSync } from "child_process"; -import * as ts from "typescript"; +import ts from "typescript"; export function processFile(sourceFile: ts.SourceFile) { diff --git a/packages/pogen/src/potextract.test.ts b/packages/pogen/src/potextract.test.ts @@ -16,7 +16,7 @@ import { test } from "node:test"; import assert from "node:assert"; -import * as ts from "typescript"; +import ts from "typescript"; import { ParseError, processFileForTesting } from "./potextract.js"; function wrapIntoFunction(src: string): string { diff --git a/packages/pogen/src/potextract.ts b/packages/pogen/src/potextract.ts @@ -19,7 +19,7 @@ */ import * as fs from "node:fs"; import * as path from "node:path"; -import * as ts from "typescript"; +import ts from "typescript"; const DEFAULT_PO_HEADER = `# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER diff --git a/packages/pogen/tsconfig.json b/packages/pogen/tsconfig.json @@ -3,6 +3,7 @@ "compilerOptions": { "outDir": "lib", "rootDir": "./src", + "preserveSymlinks": false, "lib": [ "ES2023" ], diff --git a/packages/qa-tooling/package.json b/packages/qa-tooling/package.json @@ -20,5 +20,8 @@ "eslint-plugin-react-hooks": "^5.1.0", "globals": "^16.5.0", "typescript-eslint": "^8.24.1" + }, + "devDependencies": { + "typescript": "npm:@typescript/typescript6@^6.0.2" } } diff --git a/packages/taler-auditor-webui/package.json b/packages/taler-auditor-webui/package.json @@ -47,7 +47,7 @@ "preact-render-to-string": "^5.2.6", "sass": "1.56.1", "source-map-support": "^0.5.21", - "typescript": "6.0.3" + "typescript": "7.0.2" }, "pogen": { "domain": "taler-auditor-backoffice" diff --git a/packages/taler-exchange-aml-webui/package.json b/packages/taler-exchange-aml-webui/package.json @@ -41,7 +41,7 @@ "esbuild": "^0.28.0", "postcss": "^8.4.23", "tailwindcss": "3.4.17", - "typescript": "6.0.3" + "typescript": "7.0.2" }, "pogen": { "domain": "aml-backoffice" diff --git a/packages/taler-exchange-kyc-webui/package.json b/packages/taler-exchange-kyc-webui/package.json @@ -27,7 +27,7 @@ "chai": "^6.2.2", "esbuild": "^0.28.0", "tailwindcss": "3.4.17", - "typescript": "6.0.3" + "typescript": "7.0.2" }, "pogen": { "domain": "kyc-ui" diff --git a/packages/taler-harness/package.json b/packages/taler-harness/package.json @@ -36,7 +36,7 @@ "@types/node": "^20.19.41", "esbuild": "^0.28.0", "prettier": "^3.8.3", - "typescript": "^6.0.3" + "typescript": "^7.0.2" }, "dependencies": { "@gnu-taler/taler-util": "workspace:*", diff --git a/packages/taler-merchant-webui/package.json b/packages/taler-merchant-webui/package.json @@ -45,7 +45,7 @@ "chai": "^6.2.2", "sass": "1.56.1", "source-map-support": "^0.5.21", - "typescript": "6.0.3" + "typescript": "7.0.2" }, "pogen": { "domain": "taler-merchant-backoffice" diff --git a/packages/taler-util/package.json b/packages/taler-util/package.json @@ -75,7 +75,7 @@ "@types/follow-redirects": "^1.14.4", "@types/node": "^20.19.41", "esbuild": "^0.28.0", - "typescript": "^6.0.3" + "typescript": "^7.0.2" }, "dependencies": { "big-integer": "^1.6.52", diff --git a/packages/taler-wallet-cli/package.json b/packages/taler-wallet-cli/package.json @@ -35,7 +35,7 @@ "devDependencies": { "@types/node": "^20.19.41", "prettier": "^3.8.3", - "typescript": "^6.0.3" + "typescript": "^7.0.2" }, "dependencies": { "@gnu-taler/taler-util": "workspace:*", diff --git a/packages/taler-wallet-core/package.json b/packages/taler-wallet-core/package.json @@ -58,7 +58,7 @@ "@types/node": "^18.11.17", "jed": "^1.1.1", "prettier": "^3.8.3", - "typescript": "^6.0.3" + "typescript": "^7.0.2" }, "dependencies": { "@gnu-taler/idb-bridge": "workspace:*", diff --git a/packages/taler-wallet-embedded/tsconfig.json b/packages/taler-wallet-embedded/tsconfig.json @@ -2,6 +2,7 @@ "extends": "../../tsconfig.defaults.json", "compilerOptions": { "lib": ["ES2023"], + "types": ["node"], "outDir": "lib", "allowJs": true, "checkJs": true, diff --git a/packages/taler-wallet-webextension/package.json b/packages/taler-wallet-webextension/package.json @@ -44,7 +44,7 @@ "chai": "^6.2.2", "esbuild": "^0.28.0", "polished": "^4.1.4", - "typescript": "6.0.3" + "typescript": "7.0.2" }, "pogen": { "domain": "taler-wallet-webex" diff --git a/packages/web-util/package.json b/packages/web-util/package.json @@ -54,7 +54,7 @@ "sass": "1.56.1", "swr": "2.0.3", "tslib": "^2.6.2", - "typescript": "^6.0.3", + "typescript": "^7.0.2", "ws": "7.4.5" }, "dependencies": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml @@ -15,8 +15,8 @@ importers: specifier: ^3.8.3 version: 3.8.3 typescript: - specifier: ^6.0.3 - version: 6.0.3 + specifier: ^7.0.2 + version: 7.0.2 packages/anastasis-cli: dependencies: @@ -37,8 +37,8 @@ importers: specifier: ^3.8.3 version: 3.8.3 typescript: - specifier: ^6.0.3 - version: 6.0.3 + specifier: ^7.0.2 + version: 7.0.2 packages/anastasis-core: dependencies: @@ -56,8 +56,8 @@ importers: specifier: ^20.19.41 version: 20.19.41 typescript: - specifier: ^6.0.3 - version: 6.0.3 + specifier: ^7.0.2 + version: 7.0.2 packages/anastasis-webui: dependencies: @@ -114,8 +114,8 @@ importers: specifier: 1.56.1 version: 1.56.1 typescript: - specifier: ^6.0.3 - version: 6.0.3 + specifier: ^7.0.2 + version: 7.0.2 packages/challenger-webui: dependencies: @@ -137,7 +137,7 @@ importers: version: link:../pogen '@tailwindcss/forms': specifier: ^0.5.3 - version: 0.5.3(tailwindcss@3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3))) + version: 0.5.3(tailwindcss@3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2))) '@types/chai': specifier: ^4.3.0 version: 4.3.3 @@ -158,10 +158,10 @@ importers: version: 0.28.0 tailwindcss: specifier: 3.4.17 - version: 3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3)) + version: 3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2)) typescript: - specifier: 6.0.3 - version: 6.0.3 + specifier: 7.0.2 + version: 7.0.2 packages/idb-bridge: dependencies: @@ -179,8 +179,8 @@ importers: specifier: ^3.8.3 version: 3.8.3 typescript: - specifier: ^6.0.3 - version: 6.0.3 + specifier: ^7.0.2 + version: 7.0.2 packages/libeufin-bank-webui: dependencies: @@ -208,7 +208,7 @@ importers: version: link:../pogen '@tailwindcss/forms': specifier: ^0.5.3 - version: 0.5.3(tailwindcss@3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3))) + version: 0.5.3(tailwindcss@3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2))) '@types/chai': specifier: ^4.3.0 version: 4.3.3 @@ -229,10 +229,10 @@ importers: version: 0.28.0 tailwindcss: specifier: 3.4.17 - version: 3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3)) + version: 3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2)) typescript: - specifier: 6.0.3 - version: 6.0.3 + specifier: 7.0.2 + version: 7.0.2 packages/merchant-backend-ui: dependencies: @@ -266,13 +266,13 @@ importers: version: 5.2.6(preact@10.11.3) ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@20.19.41)(typescript@6.0.3) + version: 10.9.1(@types/node@20.19.41)(typescript@7.0.2) tslib: specifier: 2.6.2 version: 2.6.2 typescript: - specifier: 6.0.3 - version: 6.0.3 + specifier: 7.0.2 + version: 7.0.2 packages/pogen: dependencies: @@ -293,8 +293,8 @@ importers: specifier: ^4.0.3 version: 4.0.4 typescript: - specifier: ^6.0.3 - version: 6.0.3 + specifier: npm:@typescript/typescript6@^6.0.2 + version: '@typescript/typescript6@6.0.2' packages/qa-tooling: dependencies: @@ -315,7 +315,7 @@ importers: version: 3.1.1(eslint@9.39.4(jiti@1.21.7)) eslint-plugin-import: specifier: ^2.31.0 - version: 2.32.0(@typescript-eslint/parser@8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7)) + version: 2.32.0(@typescript-eslint/parser@8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)) eslint-plugin-jsx-a11y: specifier: ^6.10.2 version: 6.10.2(eslint@9.39.4(jiti@1.21.7)) @@ -330,7 +330,11 @@ importers: version: 16.5.0 typescript-eslint: specifier: ^8.24.1 - version: 8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) + version: 8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)) + devDependencies: + typescript: + specifier: npm:@typescript/typescript6@^6.0.2 + version: '@typescript/typescript6@6.0.2' packages/taler-auditor-webui: dependencies: @@ -414,8 +418,8 @@ importers: specifier: ^0.5.21 version: 0.5.21 typescript: - specifier: 6.0.3 - version: 6.0.3 + specifier: 7.0.2 + version: 7.0.2 packages/taler-exchange-aml-webui: dependencies: @@ -452,7 +456,7 @@ importers: version: link:../pogen '@tailwindcss/forms': specifier: ^0.5.3 - version: 0.5.3(tailwindcss@3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3))) + version: 0.5.3(tailwindcss@3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2))) '@types/chai': specifier: ^4.3.0 version: 4.3.3 @@ -476,10 +480,10 @@ importers: version: 8.4.49 tailwindcss: specifier: 3.4.17 - version: 3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3)) + version: 3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2)) typescript: - specifier: 6.0.3 - version: 6.0.3 + specifier: 7.0.2 + version: 7.0.2 packages/taler-exchange-kyc-webui: dependencies: @@ -504,7 +508,7 @@ importers: version: link:../pogen '@tailwindcss/forms': specifier: ^0.5.3 - version: 0.5.3(tailwindcss@3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3))) + version: 0.5.3(tailwindcss@3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2))) '@types/chai': specifier: ^4.3.0 version: 4.3.3 @@ -525,10 +529,10 @@ importers: version: 0.28.0 tailwindcss: specifier: 3.4.17 - version: 3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3)) + version: 3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2)) typescript: - specifier: 6.0.3 - version: 6.0.3 + specifier: 7.0.2 + version: 7.0.2 packages/taler-harness: dependencies: @@ -564,8 +568,8 @@ importers: specifier: ^3.8.3 version: 3.8.3 typescript: - specifier: ^6.0.3 - version: 6.0.3 + specifier: ^7.0.2 + version: 7.0.2 packages/taler-merchant-webui: dependencies: @@ -646,8 +650,8 @@ importers: specifier: ^0.5.21 version: 0.5.21 typescript: - specifier: 6.0.3 - version: 6.0.3 + specifier: 7.0.2 + version: 7.0.2 packages/taler-util: dependencies: @@ -680,8 +684,8 @@ importers: specifier: ^0.28.0 version: 0.28.0 typescript: - specifier: ^6.0.3 - version: 6.0.3 + specifier: ^7.0.2 + version: 7.0.2 packages/taler-wallet-cli: dependencies: @@ -702,8 +706,8 @@ importers: specifier: ^3.8.3 version: 3.8.3 typescript: - specifier: ^6.0.3 - version: 6.0.3 + specifier: ^7.0.2 + version: 7.0.2 packages/taler-wallet-core: dependencies: @@ -736,8 +740,8 @@ importers: specifier: ^3.8.3 version: 3.8.3 typescript: - specifier: ^6.0.3 - version: 6.0.3 + specifier: ^7.0.2 + version: 7.0.2 packages/taler-wallet-embedded: dependencies: @@ -825,8 +829,8 @@ importers: specifier: ^4.1.4 version: 4.2.2 typescript: - specifier: 6.0.3 - version: 6.0.3 + specifier: 7.0.2 + version: 7.0.2 packages/web-util: dependencies: @@ -838,7 +842,7 @@ importers: version: 1.4.4 tailwindcss: specifier: 3.4.17 - version: 3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3)) + version: 3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2)) devDependencies: '@gnu-taler/pogen': specifier: workspace:* @@ -878,7 +882,7 @@ importers: version: 8.4.49 postcss-load-config: specifier: ^4.0.1 - version: 4.0.2(postcss@8.4.49)(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3)) + version: 4.0.2(postcss@8.4.49)(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2)) preact: specifier: 10.11.3 version: 10.11.3 @@ -898,8 +902,8 @@ importers: specifier: ^2.6.2 version: 2.8.1 typescript: - specifier: ^6.0.3 - version: 6.0.3 + specifier: ^7.0.2 + version: 7.0.2 ws: specifier: 7.4.5 version: 7.4.5 @@ -1338,6 +1342,130 @@ packages: resolution: {integrity: sha512-f1UQF7ggd42YiwI5wGrRaPsa+P0CINBlrkLPmGfpq/u/I/oVtecoEIfFR9ag/oa1sLOsRNZ6xehf6qMZhQGBDg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript/typescript-aix-ppc64@7.0.2': + resolution: {integrity: sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==} + engines: {node: '>=16.20.0'} + cpu: [ppc64] + os: [aix] + + '@typescript/typescript-darwin-arm64@7.0.2': + resolution: {integrity: sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==} + engines: {node: '>=16.20.0'} + cpu: [arm64] + os: [darwin] + + '@typescript/typescript-darwin-x64@7.0.2': + resolution: {integrity: sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [darwin] + + '@typescript/typescript-freebsd-arm64@7.0.2': + resolution: {integrity: sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==} + engines: {node: '>=16.20.0'} + cpu: [arm64] + os: [freebsd] + + '@typescript/typescript-freebsd-x64@7.0.2': + resolution: {integrity: sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [freebsd] + + '@typescript/typescript-linux-arm64@7.0.2': + resolution: {integrity: sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==} + engines: {node: '>=16.20.0'} + cpu: [arm64] + os: [linux] + + '@typescript/typescript-linux-arm@7.0.2': + resolution: {integrity: sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==} + engines: {node: '>=16.20.0'} + cpu: [arm] + os: [linux] + + '@typescript/typescript-linux-loong64@7.0.2': + resolution: {integrity: sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==} + engines: {node: '>=16.20.0'} + cpu: [loong64] + os: [linux] + + '@typescript/typescript-linux-mips64el@7.0.2': + resolution: {integrity: sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==} + engines: {node: '>=16.20.0'} + cpu: [mips64el] + os: [linux] + + '@typescript/typescript-linux-ppc64@7.0.2': + resolution: {integrity: sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==} + engines: {node: '>=16.20.0'} + cpu: [ppc64] + os: [linux] + + '@typescript/typescript-linux-riscv64@7.0.2': + resolution: {integrity: sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==} + engines: {node: '>=16.20.0'} + cpu: [riscv64] + os: [linux] + + '@typescript/typescript-linux-s390x@7.0.2': + resolution: {integrity: sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==} + engines: {node: '>=16.20.0'} + cpu: [s390x] + os: [linux] + + '@typescript/typescript-linux-x64@7.0.2': + resolution: {integrity: sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [linux] + + '@typescript/typescript-netbsd-arm64@7.0.2': + resolution: {integrity: sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==} + engines: {node: '>=16.20.0'} + cpu: [arm64] + os: [netbsd] + + '@typescript/typescript-netbsd-x64@7.0.2': + resolution: {integrity: sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [netbsd] + + '@typescript/typescript-openbsd-arm64@7.0.2': + resolution: {integrity: sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==} + engines: {node: '>=16.20.0'} + cpu: [arm64] + os: [openbsd] + + '@typescript/typescript-openbsd-x64@7.0.2': + resolution: {integrity: sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [openbsd] + + '@typescript/typescript-sunos-x64@7.0.2': + resolution: {integrity: sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [sunos] + + '@typescript/typescript-win32-arm64@7.0.2': + resolution: {integrity: sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==} + engines: {node: '>=16.20.0'} + cpu: [arm64] + os: [win32] + + '@typescript/typescript-win32-x64@7.0.2': + resolution: {integrity: sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==} + engines: {node: '>=16.20.0'} + cpu: [x64] + os: [win32] + + '@typescript/typescript6@6.0.2': + resolution: {integrity: sha512-mbCddXd+jm7hfx7w2YU64/Av4/NqqeG3GoRZgxPcgoTxYjhrcfJRw9ULch71SS4G+Q3bOXFhRvPqjguN0Hyp5w==} + hasBin: true + abort-controller@3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} engines: {node: '>=6.5'} @@ -2932,6 +3060,11 @@ packages: engines: {node: '>=14.17'} hasBin: true + typescript@7.0.2: + resolution: {integrity: sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==} + engines: {node: '>=16.20.0'} + hasBin: true + ufo@1.6.4: resolution: {integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==} @@ -3272,10 +3405,10 @@ snapshots: '@rtsao/scc@1.1.0': {} - '@tailwindcss/forms@0.5.3(tailwindcss@3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3)))': + '@tailwindcss/forms@0.5.3(tailwindcss@3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2)))': dependencies: mini-svg-data-uri: 1.4.4 - tailwindcss: 3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3)) + tailwindcss: 3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2)) '@tsconfig/node10@1.0.9': {} @@ -3344,40 +3477,40 @@ snapshots: dependencies: '@types/node': 20.19.41 - '@typescript-eslint/eslint-plugin@8.59.3(@typescript-eslint/parser@8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)': + '@typescript-eslint/eslint-plugin@8.59.3(@typescript-eslint/parser@8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)))(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7))': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) + '@typescript-eslint/parser': 8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)) '@typescript-eslint/scope-manager': 8.59.3 - '@typescript-eslint/type-utils': 8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) - '@typescript-eslint/utils': 8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) + '@typescript-eslint/type-utils': 8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)) + '@typescript-eslint/utils': 8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)) '@typescript-eslint/visitor-keys': 8.59.3 eslint: 9.39.4(jiti@1.21.7) ignore: 7.0.5 natural-compare: 1.4.0 - ts-api-utils: 2.5.0(typescript@6.0.3) - typescript: 6.0.3 + ts-api-utils: 2.5.0(@typescript/typescript6@6.0.2) + typescript: '@typescript/typescript6@6.0.2' transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)': + '@typescript-eslint/parser@8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7))': dependencies: '@typescript-eslint/scope-manager': 8.59.3 '@typescript-eslint/types': 8.59.3 - '@typescript-eslint/typescript-estree': 8.59.3(typescript@6.0.3) + '@typescript-eslint/typescript-estree': 8.59.3(@typescript/typescript6@6.0.2) '@typescript-eslint/visitor-keys': 8.59.3 debug: 4.4.3 eslint: 9.39.4(jiti@1.21.7) - typescript: 6.0.3 + typescript: '@typescript/typescript6@6.0.2' transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.59.3(typescript@6.0.3)': + '@typescript-eslint/project-service@8.59.3(@typescript/typescript6@6.0.2)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.59.3(typescript@6.0.3) + '@typescript-eslint/tsconfig-utils': 8.59.3(@typescript/typescript6@6.0.2) '@typescript-eslint/types': 8.59.3 debug: 4.4.3 - typescript: 6.0.3 + typescript: '@typescript/typescript6@6.0.2' transitivePeerDependencies: - supports-color @@ -3386,47 +3519,47 @@ snapshots: '@typescript-eslint/types': 8.59.3 '@typescript-eslint/visitor-keys': 8.59.3 - '@typescript-eslint/tsconfig-utils@8.59.3(typescript@6.0.3)': + '@typescript-eslint/tsconfig-utils@8.59.3(@typescript/typescript6@6.0.2)': dependencies: - typescript: 6.0.3 + typescript: '@typescript/typescript6@6.0.2' - '@typescript-eslint/type-utils@8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)': + '@typescript-eslint/type-utils@8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7))': dependencies: '@typescript-eslint/types': 8.59.3 - '@typescript-eslint/typescript-estree': 8.59.3(typescript@6.0.3) - '@typescript-eslint/utils': 8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) + '@typescript-eslint/typescript-estree': 8.59.3(@typescript/typescript6@6.0.2) + '@typescript-eslint/utils': 8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)) debug: 4.4.3 eslint: 9.39.4(jiti@1.21.7) - ts-api-utils: 2.5.0(typescript@6.0.3) - typescript: 6.0.3 + ts-api-utils: 2.5.0(@typescript/typescript6@6.0.2) + typescript: '@typescript/typescript6@6.0.2' transitivePeerDependencies: - supports-color '@typescript-eslint/types@8.59.3': {} - '@typescript-eslint/typescript-estree@8.59.3(typescript@6.0.3)': + '@typescript-eslint/typescript-estree@8.59.3(@typescript/typescript6@6.0.2)': dependencies: - '@typescript-eslint/project-service': 8.59.3(typescript@6.0.3) - '@typescript-eslint/tsconfig-utils': 8.59.3(typescript@6.0.3) + '@typescript-eslint/project-service': 8.59.3(@typescript/typescript6@6.0.2) + '@typescript-eslint/tsconfig-utils': 8.59.3(@typescript/typescript6@6.0.2) '@typescript-eslint/types': 8.59.3 '@typescript-eslint/visitor-keys': 8.59.3 debug: 4.4.3 minimatch: 10.2.5 semver: 7.8.0 tinyglobby: 0.2.16 - ts-api-utils: 2.5.0(typescript@6.0.3) - typescript: 6.0.3 + ts-api-utils: 2.5.0(@typescript/typescript6@6.0.2) + typescript: '@typescript/typescript6@6.0.2' transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3)': + '@typescript-eslint/utils@8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7))': dependencies: '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@1.21.7)) '@typescript-eslint/scope-manager': 8.59.3 '@typescript-eslint/types': 8.59.3 - '@typescript-eslint/typescript-estree': 8.59.3(typescript@6.0.3) + '@typescript-eslint/typescript-estree': 8.59.3(@typescript/typescript6@6.0.2) eslint: 9.39.4(jiti@1.21.7) - typescript: 6.0.3 + typescript: '@typescript/typescript6@6.0.2' transitivePeerDependencies: - supports-color @@ -3435,6 +3568,70 @@ snapshots: '@typescript-eslint/types': 8.59.3 eslint-visitor-keys: 5.0.1 + '@typescript/typescript-aix-ppc64@7.0.2': + optional: true + + '@typescript/typescript-darwin-arm64@7.0.2': + optional: true + + '@typescript/typescript-darwin-x64@7.0.2': + optional: true + + '@typescript/typescript-freebsd-arm64@7.0.2': + optional: true + + '@typescript/typescript-freebsd-x64@7.0.2': + optional: true + + '@typescript/typescript-linux-arm64@7.0.2': + optional: true + + '@typescript/typescript-linux-arm@7.0.2': + optional: true + + '@typescript/typescript-linux-loong64@7.0.2': + optional: true + + '@typescript/typescript-linux-mips64el@7.0.2': + optional: true + + '@typescript/typescript-linux-ppc64@7.0.2': + optional: true + + '@typescript/typescript-linux-riscv64@7.0.2': + optional: true + + '@typescript/typescript-linux-s390x@7.0.2': + optional: true + + '@typescript/typescript-linux-x64@7.0.2': + optional: true + + '@typescript/typescript-netbsd-arm64@7.0.2': + optional: true + + '@typescript/typescript-netbsd-x64@7.0.2': + optional: true + + '@typescript/typescript-openbsd-arm64@7.0.2': + optional: true + + '@typescript/typescript-openbsd-x64@7.0.2': + optional: true + + '@typescript/typescript-sunos-x64@7.0.2': + optional: true + + '@typescript/typescript-win32-arm64@7.0.2': + optional: true + + '@typescript/typescript-win32-x64@7.0.2': + optional: true + + '@typescript/typescript6@6.0.2': + dependencies: + '@typescript/old': typescript@6.0.3 + abort-controller@3.0.0: dependencies: event-target-shim: 5.0.1 @@ -3966,11 +4163,11 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@1.21.7)): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@1.21.7)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) + '@typescript-eslint/parser': 8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)) eslint: 9.39.4(jiti@1.21.7) eslint-import-resolver-node: 0.3.10 transitivePeerDependencies: @@ -3980,7 +4177,7 @@ snapshots: dependencies: eslint: 9.39.4(jiti@1.21.7) - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7)): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)))(eslint@9.39.4(jiti@1.21.7)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -3991,7 +4188,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.39.4(jiti@1.21.7) eslint-import-resolver-node: 0.3.10 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@1.21.7)) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@1.21.7)) hasown: 2.0.3 is-core-module: 2.16.2 is-glob: 4.0.3 @@ -4003,7 +4200,7 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) + '@typescript-eslint/parser': 8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -4754,13 +4951,13 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.4.49 - postcss-load-config@4.0.2(postcss@8.4.49)(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3)): + postcss-load-config@4.0.2(postcss@8.4.49)(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2)): dependencies: lilconfig: 3.1.3 yaml: 2.9.0 optionalDependencies: postcss: 8.4.49 - ts-node: 10.9.1(@types/node@20.19.41)(typescript@6.0.3) + ts-node: 10.9.1(@types/node@20.19.41)(typescript@7.0.2) postcss-nested@6.2.0(postcss@8.4.49): dependencies: @@ -5134,7 +5331,7 @@ snapshots: react: 18.3.1 use-sync-external-store: 1.2.0(react@18.3.1) - tailwindcss@3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3)): + tailwindcss@3.4.17(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -5153,7 +5350,7 @@ snapshots: postcss: 8.4.49 postcss-import: 15.1.0(postcss@8.4.49) postcss-js: 4.0.1(postcss@8.4.49) - postcss-load-config: 4.0.2(postcss@8.4.49)(ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3)) + postcss-load-config: 4.0.2(postcss@8.4.49)(ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2)) postcss-nested: 6.2.0(postcss@8.4.49) postcss-selector-parser: 6.1.2 resolve: 1.22.8 @@ -5190,13 +5387,13 @@ snapshots: dependencies: is-number: 7.0.0 - ts-api-utils@2.5.0(typescript@6.0.3): + ts-api-utils@2.5.0(@typescript/typescript6@6.0.2): dependencies: - typescript: 6.0.3 + typescript: '@typescript/typescript6@6.0.2' ts-interface-checker@0.1.13: {} - ts-node@10.9.1(@types/node@20.19.41)(typescript@6.0.3): + ts-node@10.9.1(@types/node@20.19.41)(typescript@7.0.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 @@ -5210,7 +5407,7 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 6.0.3 + typescript: 7.0.2 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 @@ -5262,19 +5459,42 @@ snapshots: possible-typed-array-names: 1.1.0 reflect.getprototypeof: 1.0.10 - typescript-eslint@8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3): + typescript-eslint@8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)): dependencies: - '@typescript-eslint/eslint-plugin': 8.59.3(@typescript-eslint/parser@8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3))(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) - '@typescript-eslint/parser': 8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) - '@typescript-eslint/typescript-estree': 8.59.3(typescript@6.0.3) - '@typescript-eslint/utils': 8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) + '@typescript-eslint/eslint-plugin': 8.59.3(@typescript-eslint/parser@8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)))(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)) + '@typescript-eslint/parser': 8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)) + '@typescript-eslint/typescript-estree': 8.59.3(@typescript/typescript6@6.0.2) + '@typescript-eslint/utils': 8.59.3(@typescript/typescript6@6.0.2)(eslint@9.39.4(jiti@1.21.7)) eslint: 9.39.4(jiti@1.21.7) - typescript: 6.0.3 + typescript: '@typescript/typescript6@6.0.2' transitivePeerDependencies: - supports-color typescript@6.0.3: {} + typescript@7.0.2: + optionalDependencies: + '@typescript/typescript-aix-ppc64': 7.0.2 + '@typescript/typescript-darwin-arm64': 7.0.2 + '@typescript/typescript-darwin-x64': 7.0.2 + '@typescript/typescript-freebsd-arm64': 7.0.2 + '@typescript/typescript-freebsd-x64': 7.0.2 + '@typescript/typescript-linux-arm': 7.0.2 + '@typescript/typescript-linux-arm64': 7.0.2 + '@typescript/typescript-linux-loong64': 7.0.2 + '@typescript/typescript-linux-mips64el': 7.0.2 + '@typescript/typescript-linux-ppc64': 7.0.2 + '@typescript/typescript-linux-riscv64': 7.0.2 + '@typescript/typescript-linux-s390x': 7.0.2 + '@typescript/typescript-linux-x64': 7.0.2 + '@typescript/typescript-netbsd-arm64': 7.0.2 + '@typescript/typescript-netbsd-x64': 7.0.2 + '@typescript/typescript-openbsd-arm64': 7.0.2 + '@typescript/typescript-openbsd-x64': 7.0.2 + '@typescript/typescript-sunos-x64': 7.0.2 + '@typescript/typescript-win32-arm64': 7.0.2 + '@typescript/typescript-win32-x64': 7.0.2 + ufo@1.6.4: {} unbox-primitive@1.1.0: