Skip to content

Commit 6888532

Browse files
committed
upgrade to Angular 8 and Node 12
1 parent e2961ba commit 6888532

File tree

4 files changed

+7
-16
lines changed

4 files changed

+7
-16
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
This repository contains the code of the [Angular Core Deep Dive](https://angular-university.io/course/angular-course).
55

6-
This course repository is updated to Angular v7, and there is a package-lock.json file available, for avoiding semantic versioning installation issues.
6+
This course repository is updated to Angular v8, and there is a package-lock.json file available, for avoiding semantic versioning installation issues.
77

88
![Angular Core Deep Dive](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-core-in-depth-small.png)
99

src/browserslist

Lines changed: 0 additions & 9 deletions
This file was deleted.

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"outDir": "./dist/out-tsc",
66
"sourceMap": true,
77
"declaration": false,
8-
"module": "es2015",
8+
"module": "esnext",
99
"moduleResolution": "node",
1010
"emitDecoratorMetadata": true,
1111
"experimentalDecorators": true,
12-
"target": "es5",
12+
"target": "es2015",
1313
"typeRoots": [
1414
"node_modules/@types"
1515
],

tslint.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,12 @@
117117
"check-type"
118118
],
119119
"no-output-on-prefix": true,
120-
"use-input-property-decorator": true,
121-
"use-output-property-decorator": true,
122-
"use-host-property-decorator": true,
120+
"no-inputs-metadata-property": true,
121+
"no-outputs-metadata-property": true,
122+
"no-host-metadata-property": true,
123123
"no-input-rename": true,
124124
"no-output-rename": true,
125-
"use-life-cycle-interface": true,
125+
"use-lifecycle-interface": true,
126126
"use-pipe-transform-interface": true,
127127
"component-class-suffix": true,
128128
"directive-class-suffix": true

0 commit comments

Comments
 (0)