Skip to content

Commit fe21479

Browse files
committed
chore: fix building package
1 parent 777b6c3 commit fe21479

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"skipLibCheck": true,
2525
"strict": true,
2626
"target": "ESNext",
27-
"verbatimModuleSyntax": true
27+
"verbatimModuleSyntax": true,
28+
"types": ["react-native", "jest", "node"]
2829
}
2930
}

turbo.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,14 @@
1111
"src/*.tsx",
1212
"example/package.json",
1313
"example/android",
14+
"expoExample/package.json",
15+
"expoExample/android",
1416
"!example/android/.gradle",
1517
"!example/android/build",
16-
"!example/android/app/build"
18+
"!example/android/app/build",
19+
"!expoExample/android/.gradle",
20+
"!expoExample/android/build",
21+
"!expoExample/android/app/build"
1722
],
1823
"outputs": []
1924
},
@@ -27,8 +32,12 @@
2732
"src/*.tsx",
2833
"example/package.json",
2934
"example/ios",
35+
"expoExample/package.json",
36+
"expoExample/ios",
3037
"!example/ios/build",
31-
"!example/ios/Pods"
38+
"!example/ios/Pods",
39+
"!expoExample/ios/build",
40+
"!expoExample/ios/Pods"
3241
],
3342
"outputs": []
3443
}

0 commit comments

Comments
 (0)