From ec5eceec8089e2af2b55e43d57bfdc9b44b2286e Mon Sep 17 00:00:00 2001 From: alireza Date: Wed, 3 Jun 2026 19:52:08 +0330 Subject: [PATCH] fix: add ignoreDeprecations option to tsconfig.app.json This change adds the `ignoreDeprecations: "6.0"` option to the TypeScript configuration to suppress deprecation warnings related to TypeScript 6.0 changes, ensuring a cleaner build process without breaking existing functionality. --- backend/ClientApp/tsconfig.app.json | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/ClientApp/tsconfig.app.json b/backend/ClientApp/tsconfig.app.json index a65e501..8411578 100644 --- a/backend/ClientApp/tsconfig.app.json +++ b/backend/ClientApp/tsconfig.app.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "ignoreDeprecations": "6.0", "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", "target": "es2023", "lib": ["ES2023", "DOM"],