build: update to ionic 5 and angular 8

This commit is contained in:
Jovan Krunić
2020-10-27 17:42:16 +01:00
parent f2ca308a29
commit 3dc115eb3a
6 changed files with 6325 additions and 2066 deletions

12
browserslist Normal file
View File

@@ -0,0 +1,12 @@
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries
# You can see what browsers were selected by your queries by running:
# npx browserslist
> 0.5%
last 2 versions
Firefox ESR
not dead
not IE 9-11 # For IE 9-11 support, remove 'not'.

8334
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -34,18 +34,17 @@
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'"
},
"dependencies": {
"@angular/common": "7.2.14",
"@angular/core": "7.2.14",
"@angular/forms": "7.2.14",
"@angular/http": "7.2.14",
"@angular/platform-browser": "7.2.14",
"@angular/platform-browser-dynamic": "7.2.14",
"@angular/router": "7.2.14",
"@angular/common": "8.2.14",
"@angular/core": "8.2.14",
"@angular/forms": "8.2.14",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/router": "8.2.14",
"@ionic-native/core": "5.4.0",
"@ionic-native/geolocation": "5.4.0",
"@ionic-native/splash-screen": "5.4.0",
"@ionic-native/status-bar": "5.4.0",
"@ionic/angular": "4.6.1",
"@ionic/angular": "5.4.1",
"@ionic/storage": "2.2.0",
"@ngx-translate/core": "11.0.1",
"@ngx-translate/http-loader": "4.0.0",
@@ -68,26 +67,26 @@
"moment": "2.24.0",
"ngx-markdown": "7.1.4",
"ngx-moment": "3.4.0",
"rxjs": "6.4.0",
"zone.js": "0.9.0"
"rxjs": "6.6.3",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/architect": "0.13.10",
"@angular-devkit/build-angular": "0.13.10",
"@angular-devkit/build-angular": "~0.803.29",
"@angular-devkit/core": "7.3.8",
"@angular-devkit/schematics": "7.3.8",
"@angular/cli": "7.3.8",
"@angular/compiler": "7.2.14",
"@angular/compiler-cli": "7.2.14",
"@angular/language-service": "7.2.14",
"@angular/cli": "8.3.29",
"@angular/compiler": "8.2.14",
"@angular/compiler-cli": "8.2.14",
"@angular/language-service": "8.2.14",
"@compodoc/compodoc": "1.1.10",
"@ionic/angular-toolkit": "2.0.0",
"@ionic/angular-toolkit": "2.3.3",
"@types/deepmerge": "2.2.0",
"@types/form-data": "2.5.0",
"@types/jasmine": "3.3.12",
"@types/jasminewd2": "2.0.6",
"@types/node": "10.14.6",
"codelyzer": "5.0.0",
"codelyzer": "^5.0.1",
"conventional-changelog-cli": "2.0.12",
"is-docker": "1.1.0",
"jasmine-core": "3.5.0",
@@ -102,7 +101,7 @@
"surge": "0.21.3",
"ts-node": "8.0.3",
"tslint": "5.15.0",
"typescript": "3.2.4"
"typescript": "3.5.3"
},
"cordova": {
"plugins": {

View File

@@ -2,9 +2,8 @@
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"baseUrl": "./",
"module": "es2015"
},
"baseUrl": "./"
},
"exclude": [
"test.ts",
"**/*.spec.ts"

View File

@@ -2,8 +2,8 @@
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/spec",
"baseUrl": "./",
"module": "commonjs",
"baseUrl": "./"
,
},
"files": [
"test.ts"

View File

@@ -6,7 +6,6 @@
"declaration": false,
"emitDecoratorMetadata": true,
"strictPropertyInitialization": false,
"target": "es5",
"lib": [
"es2017",
"dom"