fix for #529
This commit is contained in:
parent
728173c7f1
commit
ffabe56b90
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"allowJs": true,
|
||||||
|
"allowSyntheticDefaultImports": true
|
||||||
|
},
|
||||||
|
"exclude": [
|
||||||
|
"node_modules"
|
||||||
|
]
|
||||||
|
}
|
|
@ -160,7 +160,7 @@ export default class FirebaseApp {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this._namespaces[_name]) {
|
if (!this._namespaces[_name]) {
|
||||||
this._namespaces[_name] = new InstanceClass(this);
|
this._namespaces[_name] = new InstanceClass(this, this._options);
|
||||||
}
|
}
|
||||||
|
|
||||||
return this._namespaces[_name];
|
return this._namespaces[_name];
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue