From 27ba6e74bde8fd61f3535aa2515b494bbdc9e76e Mon Sep 17 00:00:00 2001 From: naiba Date: Tue, 21 Jul 2026 08:57:13 +0000 Subject: [PATCH] fix: remove obsolete TypeScript baseUrl options Co-authored-by: naiba/CloudCode --- tsconfig.app.json | 2 +- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.app.json b/tsconfig.app.json index 9284bbc..89719bb 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -1,7 +1,7 @@ { "compilerOptions": { "ignoreDeprecations": "6.0", - "baseUrl": ".", + // TypeScript 7 resolves paths relative to this config; baseUrl was removed. "paths": { "@/*": ["./src/*"] }, diff --git a/tsconfig.json b/tsconfig.json index 77ed242..e90d62d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,7 @@ ], "compilerOptions": { "ignoreDeprecations": "6.0", - "baseUrl": ".", + // TypeScript 7 resolves paths relative to this config; baseUrl was removed. "paths": { "@/*": ["./src/*"] }