File tree 3 files changed +27
-1
lines changed
dev-packages/type-check/ts3.8-test
3 files changed +27
-1
lines changed Original file line number Diff line number Diff line change
1
+ declare global {
2
+ interface History { }
3
+ interface IDBObjectStore { }
4
+ interface Window {
5
+ fetch : any ;
6
+ }
7
+ interface ShadowRoot { }
8
+ interface BufferSource { }
9
+ interface PerformanceResourceTiming {
10
+ decodedBodySize : any ;
11
+ encodedBodySize : any ;
12
+ duration : any ;
13
+ domInteractive : any ;
14
+ domContentLoadedEventEnd : any ;
15
+ domContentLoadedEventStart : any ;
16
+ loadEventStart : any ;
17
+ loadEventEnd : number ;
18
+ domComplete : number ;
19
+ redirectCount : number ;
20
+ }
21
+ interface PerformanceEntry { }
22
+ }
23
+ import 'react-native' ;
24
+
1
25
// we need to import the SDK to ensure tsc check the types
2
26
import * as _Sentry from '@sentry/react-native' ;
Original file line number Diff line number Diff line change 9
9
},
10
10
"license" : " MIT" ,
11
11
"devDependencies" : {
12
- "@types/react" : " 17.0.58 " ,
12
+ "@types/react" : " 17.0.83 " ,
13
13
"@types/react-native" : " 0.65.30" ,
14
14
"typescript" : " 3.8.3"
15
15
},
Original file line number Diff line number Diff line change 5
5
"compilerOptions" : {
6
6
"skipLibCheck" : false ,
7
7
"noEmit" : true ,
8
+ "importHelpers" : true ,
8
9
"types" : [],
10
+ "lib" : [" es2015" ],
9
11
"jsx" : " react-native" ,
10
12
"target" : " es6" ,
11
13
"moduleResolution" : " node" ,
You can’t perform that action at this time.
0 commit comments