This is an automated email from the ASF dual-hosted git repository.
tirkarthi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new bfecc03a274 Use paths to fix baseUrl deprecation warning in tsconfig
which helps in using typescript 7 preview. (#68320)
bfecc03a274 is described below
commit bfecc03a274d058f987daaf50f331a67020c4a23
Author: Karthikeyan Singaravelan <[email protected]>
AuthorDate: Sun Jun 14 09:24:53 2026 +0530
Use paths to fix baseUrl deprecation warning in tsconfig which helps in
using typescript 7 preview. (#68320)
* Use paths to fix baseUrl deprecation warning in tsconfig which helps in
using typescript 7 preview.
* Remove ignoreDeprecations since there are no active deprecations.
---
airflow-core/src/airflow/ui/tsconfig.app.json | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/airflow-core/src/airflow/ui/tsconfig.app.json
b/airflow-core/src/airflow/ui/tsconfig.app.json
index 3fd1e8c5d61..87b0d171c8a 100644
--- a/airflow-core/src/airflow/ui/tsconfig.app.json
+++ b/airflow-core/src/airflow/ui/tsconfig.app.json
@@ -21,12 +21,11 @@
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
- "baseUrl": ".",
- "ignoreDeprecations": "6.0",
"paths": {
"src/*": ["./src/*"],
"openapi/*": ["./openapi-gen/*"],
- "tests/*": ["./tests/*"]
+ "tests/*": ["./tests/*"],
+ "*": ["./*"]
},
"types": ["node"]
},