File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -60,9 +60,9 @@ export class FirebaseAppImpl implements FirebaseApp {
60
60
// add itself to container
61
61
this . _addComponent ( new Component ( 'app' , ( ) => this , ComponentType . PUBLIC ) ) ;
62
62
// populate ComponentContainer with existing components
63
- for ( const component of this . firebase_ . INTERNAL . components . values ( ) ) {
64
- this . _addComponent ( component ) ;
65
- }
63
+ this . firebase_ . INTERNAL . components . forEach ( component =>
64
+ this . _addComponent ( component )
65
+ ) ;
66
66
}
67
67
68
68
get automaticDataCollectionEnabled ( ) : boolean {
Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ export class FirebaseAppLiteImpl implements FirebaseApp {
64
64
new Component ( 'app' , ( ) => this , ComponentType . PUBLIC )
65
65
) ;
66
66
// populate ComponentContainer with existing components
67
- for ( const component of this . firebase_ . INTERNAL . components . values ( ) ) {
68
- this . container . addComponent ( component ) ;
69
- }
67
+ this . firebase_ . INTERNAL . components . forEach ( component =>
68
+ this . container . addComponent ( component )
69
+ ) ;
70
70
}
71
71
72
72
get automaticDataCollectionEnabled ( ) : boolean {
Original file line number Diff line number Diff line change 2
2
"extends" : " ../../config/tsconfig.base.json" ,
3
3
"compilerOptions" : {
4
4
"outDir" : " dist" ,
5
- "resolveJsonModule" : true ,
6
- "downlevelIteration" : true
5
+ "resolveJsonModule" : true
7
6
},
8
7
"exclude" : [" dist/**/*" ]
9
8
}
You can’t perform that action at this time.
0 commit comments