From 1f7b90b816d3f2dd81d3635dbf97e81c6f3b1af2 Mon Sep 17 00:00:00 2001 From: Aleksandar Date: Mon, 15 Dec 2025 13:13:31 +0100 Subject: [PATCH] fix: add ignoreDeprecations to mobile tsconfig to suppress baseUrl warning --- apps/mobile/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/mobile/tsconfig.json b/apps/mobile/tsconfig.json index a0c1326..6a0a348 100644 --- a/apps/mobile/tsconfig.json +++ b/apps/mobile/tsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "ignoreDeprecations": "6.0", "allowJs": true, "allowSyntheticDefaultImports": true, "esModuleInterop": true,