PR-715551: Fix tsconfig.json for TypeScript 6 compatibility.

Added ignoreDeprecations and types jest/node to fix TS6 breaking
changes. Regenerated package-lock.json with --include=optional.
This commit is contained in:
2026-06-03 04:16:01 +00:00
parent 7c8fa1ea4c
commit 9cfac2494a
2 changed files with 1133 additions and 1239 deletions

2364
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -3,9 +3,11 @@
"module": "commonjs",
"esModuleInterop": true,
"target": "es2021",
"moduleResolution": "node",
"moduleResolution": "node10",
"ignoreDeprecations": "5.0",
"sourceMap": true,
"typeRoots" : ["./src/@types", "./node_modules/@types"],
"types": ["jest", "node"],
"strict": true,
"forceConsistentCasingInFileNames": true,
"emitDecoratorMetadata": true,