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.
This commit is contained in:
2026-06-03 19:52:08 +03:30
parent 01f87cc461
commit ec5eceec80

View File

@@ -1,5 +1,6 @@
{
"compilerOptions": {
"ignoreDeprecations": "6.0",
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "es2023",
"lib": ["ES2023", "DOM"],