From 36aecda8c64ec11e466302086cc06a81f14c0e7a Mon Sep 17 00:00:00 2001 From: Jakub Grzywacz Date: Fri, 25 Oct 2024 16:20:30 +0200 Subject: [PATCH] fix: example types (#2508) # Summary Fixes small mistake introduced in #2507 --- apps/common/tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/common/tsconfig.json b/apps/common/tsconfig.json index 5e43cf68..0d079c08 100644 --- a/apps/common/tsconfig.json +++ b/apps/common/tsconfig.json @@ -4,9 +4,9 @@ "moduleSuffixes": [".macos", ""], "baseUrl": ".", "paths": { - "react-native-svg": ["../src"], - "react-native-svg/css": ["../src/css/index.tsx"], - "react-native-svg/filter-image": ["../src/filter-image/index.tsx"], + "react-native-svg": ["../../src"], + "react-native-svg/css": ["../../src/css/index.tsx"], + "react-native-svg/filter-image": ["../../src/filter-image/index.tsx"], "react-native-reanimated": [ "../example/node_modules/react-native-reanimated" ],