Merge ben/fix/warnings

This commit is contained in:
Ben Goldsworthy 2020-11-30 11:35:10 +00:00
commit 4ac06f9747
5 changed files with 559 additions and 686 deletions

View file

@ -31,6 +31,10 @@
], ],
"scripts": [ "scripts": [
"node_modules/moment/min/moment.min.js" "node_modules/moment/min/moment.min.js"
],
"allowedCommonJsDependencies": [
"chart.js",
"ng2-validation-manager"
] ]
}, },
"configurations": { "configurations": {

9
ngcc.config.js Normal file
View file

@ -0,0 +1,9 @@
module.exports = {
packages: {
'@agm/markerclusterer': {
ignorableDeepImportMatchers: [
/@google\//,
]
}
}
}

1205
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -24,15 +24,14 @@
"dependencies": { "dependencies": {
"@agm/core": "^3.0.0-beta.0", "@agm/core": "^3.0.0-beta.0",
"@agm/markerclusterer": "^3.0.0-beta.0", "@agm/markerclusterer": "^3.0.0-beta.0",
"@angular/common": "10.0.6", "@angular/common": "10.2.1",
"@angular/compiler": "10.0.6", "@angular/compiler": "10.2.1",
"@angular/core": "10.0.6", "@angular/core": "10.2.1",
"@angular/fire": "^6.0.4", "@angular/forms": "10.2.1",
"@angular/forms": "10.0.6", "@angular/platform-browser": "10.2.1",
"@angular/platform-browser": "10.0.6", "@angular/platform-browser-dynamic": "10.2.1",
"@angular/platform-browser-dynamic": "10.0.6", "@angular/router": "10.2.1",
"@angular/router": "10.0.6", "@angular/upgrade": "10.2.1",
"@angular/upgrade": "10.0.6",
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.3.1", "@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.3.1",
"@coreui/icons": "0.3.0", "@coreui/icons": "0.3.0",
"@google/markerclustererplus": "^5.0.4", "@google/markerclustererplus": "^5.0.4",
@ -56,7 +55,7 @@
"ngx-filter-pipe": "^2.1.2", "ngx-filter-pipe": "^2.1.2",
"ngx-pagination": "^4.0.0", "ngx-pagination": "^4.0.0",
"popper.js": "^1.15.0", "popper.js": "^1.15.0",
"rxjs": "6.6.0", "rxjs": "6.6.3",
"stream": "0.0.2", "stream": "0.0.2",
"ts-helpers": "1.1.2", "ts-helpers": "1.1.2",
"tslib": "^1.10.0", "tslib": "^1.10.0",
@ -66,8 +65,8 @@
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "^0.1002.0", "@angular-devkit/build-angular": "^0.1002.0",
"@angular/cli": "^10.0.4", "@angular/cli": "^10.2.0",
"@angular/compiler-cli": "10.0.6", "@angular/compiler-cli": "10.2.1",
"@types/googlemaps": "^3.39.8", "@types/googlemaps": "^3.39.8",
"@types/jasmine": "3.3.13", "@types/jasmine": "3.3.13",
"@types/jasminewd2": "2.0.6", "@types/jasminewd2": "2.0.6",

View file

@ -8,5 +8,9 @@
"exclude": [ "exclude": [
"test.ts", "test.ts",
"**/*.spec.ts" "**/*.spec.ts"
],
"files": [
"main.ts",
"polyfills.ts"
] ]
} }