File tree 4 files changed +4
-1
lines changed
4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 2
2
const { getDefaultConfig } = require ( "expo/metro-config" ) ;
3
3
const path = require ( "path" ) ;
4
4
5
+ // eslint-disable-next-line no-undef
5
6
const defaultConfig = getDefaultConfig ( __dirname ) ;
6
7
7
8
const resolvers = {
Original file line number Diff line number Diff line change 5
5
"android" : " react-native run-android" ,
6
6
"ios" : " react-native run-ios" ,
7
7
"web" : " expo start --web" ,
8
+ "build" : " tsc --noEmit" ,
8
9
"lint" : " eslint ." ,
9
10
"test" : " jest"
10
11
},
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ interface RouterState {
65
65
stack : React . ReactNode [ ] ;
66
66
prevIndex : number ;
67
67
nextIndex : number ;
68
- animValue : Animated . AnimatedInterpolation ;
68
+ animValue : Animated . AnimatedInterpolation < string | number > ;
69
69
transitionConfig : TransitionConfig | void ;
70
70
sharedElementsConfig : SharedElementsStrictConfig | void ;
71
71
sharedElementScreens : ( ScreenTransitionContextOnSharedElementsUpdatedEvent | void ) [ ] ;
Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ export class TestImage extends React.Component<PropsType> {
119
119
</ SharedElement >
120
120
) ;
121
121
const content = panZoom ? (
122
+ // @ts -ignore Property children does not exist on ImageZoom
122
123
< ImageZoom
123
124
cropWidth = { SIZES . max }
124
125
cropHeight = { SIZES . max }
You can’t perform that action at this time.
0 commit comments