This commit is contained in:
Salakar 2017-10-19 14:46:02 +01:00
parent 728173c7f1
commit ffabe56b90
3 changed files with 250 additions and 1 deletions

9
jsconfig.json Normal file
View File

@ -0,0 +1,9 @@
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true
},
"exclude": [
"node_modules"
]
}

View File

@ -160,7 +160,7 @@ export default class FirebaseApp {
}
if (!this._namespaces[_name]) {
this._namespaces[_name] = new InstanceClass(this);
this._namespaces[_name] = new InstanceClass(this, this._options);
}
return this._namespaces[_name];

240
scratch.js Normal file

File diff suppressed because one or more lines are too long