mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-23 23:39:50 -04:00
don't warn me about commonjs related to firebase
This commit is contained in:
parent
e1ec08b8b9
commit
49f0969fc0
@ -23,14 +23,15 @@
|
|||||||
"polyfills": "src/polyfills.ts",
|
"polyfills": "src/polyfills.ts",
|
||||||
"tsConfig": "tsconfig.app.json",
|
"tsConfig": "tsconfig.app.json",
|
||||||
"aot": true,
|
"aot": true,
|
||||||
"assets": [
|
"assets": ["src/favicon.ico", "src/assets"],
|
||||||
"src/favicon.ico",
|
"styles": ["src/styles.scss"],
|
||||||
"src/assets"
|
"scripts": [],
|
||||||
],
|
"allowedCommonJsDependencies": [
|
||||||
"styles": [
|
"firebase",
|
||||||
"src/styles.scss"
|
"@firebase/app",
|
||||||
],
|
"@firebase/auth",
|
||||||
"scripts": []
|
"@firebase/database"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"production": {
|
"production": {
|
||||||
@ -87,13 +88,8 @@
|
|||||||
"polyfills": "src/polyfills.ts",
|
"polyfills": "src/polyfills.ts",
|
||||||
"tsConfig": "tsconfig.spec.json",
|
"tsConfig": "tsconfig.spec.json",
|
||||||
"karmaConfig": "karma.conf.js",
|
"karmaConfig": "karma.conf.js",
|
||||||
"assets": [
|
"assets": ["src/favicon.ico", "src/assets"],
|
||||||
"src/favicon.ico",
|
"styles": ["src/styles.scss"],
|
||||||
"src/assets"
|
|
||||||
],
|
|
||||||
"styles": [
|
|
||||||
"src/styles.scss"
|
|
||||||
],
|
|
||||||
"scripts": []
|
"scripts": []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -105,9 +101,7 @@
|
|||||||
"tsconfig.spec.json",
|
"tsconfig.spec.json",
|
||||||
"e2e/tsconfig.json"
|
"e2e/tsconfig.json"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": ["**/node_modules/**"]
|
||||||
"**/node_modules/**"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"e2e": {
|
"e2e": {
|
||||||
@ -130,4 +124,4 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"defaultProject": "db"
|
"defaultProject": "db"
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
"build": "ng build",
|
"build": "ng build --prod",
|
||||||
"test": "ng test",
|
"test": "ng test",
|
||||||
"lint": "ng lint",
|
"lint": "ng lint",
|
||||||
"e2e": "ng e2e"
|
"e2e": "ng e2e"
|
||||||
|
@ -24,7 +24,12 @@
|
|||||||
{{ para.p.h }}
|
{{ para.p.h }}
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
<p [ngClass]="{ 'as-inline': !(showParagraphs$ | async) }">
|
<p
|
||||||
|
[ngClass]="{
|
||||||
|
'as-inline':
|
||||||
|
(showParagraphs$ | async) === (false | null | undefined)
|
||||||
|
}"
|
||||||
|
>
|
||||||
<ng-container *ngFor="let vs of para.vss">
|
<ng-container *ngFor="let vs of para.vss">
|
||||||
<strong class="verse-number" *ngIf="showVerseNumbers$ | async"
|
<strong class="verse-number" *ngIf="showVerseNumbers$ | async"
|
||||||
>{{ vs.v }}.</strong
|
>{{ vs.v }}.</strong
|
||||||
|
Loading…
x
Reference in New Issue
Block a user