From 752a0c5dbc0620a2f3eb5bb5e652ae7dc4531aab Mon Sep 17 00:00:00 2001 From: Julian Pawlowski Date: Wed, 15 Apr 2026 11:18:39 +0000 Subject: [PATCH] chore(tsconfig): update compiler options to ignore deprecations Modified the TypeScript configuration files to set the ignoreDeprecations option to "6.0" for improved compatibility with future TypeScript versions. User-Impact: none --- docs/developer/tsconfig.json | 2 +- docs/user/tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/developer/tsconfig.json b/docs/developer/tsconfig.json index 920d7a6..e44dc68 100644 --- a/docs/developer/tsconfig.json +++ b/docs/developer/tsconfig.json @@ -2,7 +2,7 @@ // This file is not used in compilation. It is here just for a nice editor experience. "extends": "@docusaurus/tsconfig", "compilerOptions": { - "baseUrl": "." + "ignoreDeprecations": "6.0" }, "exclude": [".docusaurus", "build"] } diff --git a/docs/user/tsconfig.json b/docs/user/tsconfig.json index 920d7a6..e44dc68 100644 --- a/docs/user/tsconfig.json +++ b/docs/user/tsconfig.json @@ -2,7 +2,7 @@ // This file is not used in compilation. It is here just for a nice editor experience. "extends": "@docusaurus/tsconfig", "compilerOptions": { - "baseUrl": "." + "ignoreDeprecations": "6.0" }, "exclude": [".docusaurus", "build"] }