Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion angular.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -129,4 +129,4 @@
}
},
"defaultProject": "angular-test"
}
}
12 changes: 12 additions & 0 deletions browserslist
Original file line numberDiff line numberDiff line change
@@ -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%
last2versions
FirefoxESR
notdead
notIE9-11# For IE 9-11 support, remove 'not'.
10,535 changes: 7,130 additions & 3,405 deletions package-lock.json

Large diffs are not rendered by default.

37 changes: 18 additions & 19 deletions package.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,32 +15,31 @@
"author": "",
"license": "MIT",
"dependencies": {
"@angular/animations": "7.1.2",
"@angular/common": "7.1.2",
"@angular/compiler": "7.1.2",
"@angular/core": "7.1.2",
"@angular/forms": "7.1.2",
"@angular/http": "7.1.2",
"@angular/platform-browser": "7.1.2",
"@angular/platform-browser-dynamic": "7.1.2",
"@angular/router": "7.1.2",
"angular-in-memory-web-api": "0.7.0",
"@angular/animations": "9.0.0-rc.11",
"@angular/common": "9.0.0-rc.11",
"@angular/compiler": "9.0.0-rc.11",
"@angular/core": "9.0.0-rc.11",
"@angular/forms": "9.0.0-rc.11",
"@angular/platform-browser": "9.0.0-rc.11",
"@angular/platform-browser-dynamic": "9.0.0-rc.11",
"@angular/router": "9.0.0-rc.11",
"angular-in-memory-web-api": "0.9.0",
"bootstrap": "4.1.3",
"core-js": "2.5.4",
"jquery": "3.3.1",
"rxjs": "6.3.3",
"rxjs": "6.5.4",
"toastr": "2.1.4",
"zone.js": "0.8.26"
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.11.2",
"@angular/cli": "7.1.2",
"@angular/compiler-cli": "7.1.2",
"@angular/language-service": "7.1.2",
"@angular-devkit/build-angular": "~0.900.0-rc.10",
"@angular/cli": "9.0.0-rc.10",
"@angular/compiler-cli": "9.0.0-rc.11",
"@angular/language-service": "9.0.0-rc.11",
"@types/jasmine": "2.8.6",
"@types/jasminewd2": "2.0.3",
"@types/node": "8.9.4",
"codelyzer": "4.5.0",
"@types/node": "^13.5.0",
"codelyzer": "^5.0.1",
"jasmine-core": "2.99.1",
"jasmine-spec-reporter": "4.2.1",
"karma": "3.1.3",
Expand All@@ -51,7 +50,7 @@
"protractor": "5.4.0",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "3.1.6"
"typescript": "3.7.5"
},
"repository": {}
}
1 change: 0 additions & 1 deletion src/tsconfig.app.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,7 +3,6 @@
"compilerOptions": {
"outDir": "../out-tsc/app",
"baseUrl": "./",
"module": "es2015",
"types": []
},
"exclude": [
Expand Down
2 changes: 0 additions & 2 deletions src/tsconfig.spec.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,8 +3,6 @@
"compilerOptions": {
"outDir": "../out-tsc/spec",
"baseUrl": "./",
"module": "commonjs",
"target": "es5",
"types": [
"jasmine",
"node"
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
{
"compileOnSave": false,
"compilerOptions": {
"downlevelIteration": true,
"module": "esnext",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
Expand Down
8 changes: 4 additions & 4 deletions tslint.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -131,12 +131,12 @@
"kebab-case"
],
"no-output-on-prefix": true,
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"no-inputs-metadata-property": true,
"no-outputs-metadata-property": true,
"no-host-metadata-property": true,
"no-input-rename": true,
"no-output-rename": true,
"use-life-cycle-interface": true,
"use-lifecycle-interface": true,
"use-pipe-transform-interface": true,
"component-class-suffix": true,
"directive-class-suffix": true
Expand Down