Merge ben/fix/warnings
This commit is contained in:
commit
4ac06f9747
5 changed files with 559 additions and 686 deletions
|
@ -31,6 +31,10 @@
|
|||
],
|
||||
"scripts": [
|
||||
"node_modules/moment/min/moment.min.js"
|
||||
],
|
||||
"allowedCommonJsDependencies": [
|
||||
"chart.js",
|
||||
"ng2-validation-manager"
|
||||
]
|
||||
},
|
||||
"configurations": {
|
||||
|
|
9
ngcc.config.js
Normal file
9
ngcc.config.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
module.exports = {
|
||||
packages: {
|
||||
'@agm/markerclusterer': {
|
||||
ignorableDeepImportMatchers: [
|
||||
/@google\//,
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
1205
package-lock.json
generated
1205
package-lock.json
generated
File diff suppressed because it is too large
Load diff
23
package.json
23
package.json
|
@ -24,15 +24,14 @@
|
|||
"dependencies": {
|
||||
"@agm/core": "^3.0.0-beta.0",
|
||||
"@agm/markerclusterer": "^3.0.0-beta.0",
|
||||
"@angular/common": "10.0.6",
|
||||
"@angular/compiler": "10.0.6",
|
||||
"@angular/core": "10.0.6",
|
||||
"@angular/fire": "^6.0.4",
|
||||
"@angular/forms": "10.0.6",
|
||||
"@angular/platform-browser": "10.0.6",
|
||||
"@angular/platform-browser-dynamic": "10.0.6",
|
||||
"@angular/router": "10.0.6",
|
||||
"@angular/upgrade": "10.0.6",
|
||||
"@angular/common": "10.2.1",
|
||||
"@angular/compiler": "10.2.1",
|
||||
"@angular/core": "10.2.1",
|
||||
"@angular/forms": "10.2.1",
|
||||
"@angular/platform-browser": "10.2.1",
|
||||
"@angular/platform-browser-dynamic": "10.2.1",
|
||||
"@angular/router": "10.2.1",
|
||||
"@angular/upgrade": "10.2.1",
|
||||
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.3.1",
|
||||
"@coreui/icons": "0.3.0",
|
||||
"@google/markerclustererplus": "^5.0.4",
|
||||
|
@ -56,7 +55,7 @@
|
|||
"ngx-filter-pipe": "^2.1.2",
|
||||
"ngx-pagination": "^4.0.0",
|
||||
"popper.js": "^1.15.0",
|
||||
"rxjs": "6.6.0",
|
||||
"rxjs": "6.6.3",
|
||||
"stream": "0.0.2",
|
||||
"ts-helpers": "1.1.2",
|
||||
"tslib": "^1.10.0",
|
||||
|
@ -66,8 +65,8 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "^0.1002.0",
|
||||
"@angular/cli": "^10.0.4",
|
||||
"@angular/compiler-cli": "10.0.6",
|
||||
"@angular/cli": "^10.2.0",
|
||||
"@angular/compiler-cli": "10.2.1",
|
||||
"@types/googlemaps": "^3.39.8",
|
||||
"@types/jasmine": "3.3.13",
|
||||
"@types/jasminewd2": "2.0.6",
|
||||
|
|
|
@ -8,5 +8,9 @@
|
|||
"exclude": [
|
||||
"test.ts",
|
||||
"**/*.spec.ts"
|
||||
],
|
||||
"files": [
|
||||
"main.ts",
|
||||
"polyfills.ts"
|
||||
]
|
||||
}
|
||||
|
|
Reference in a new issue