Skip to content

Commit 94cf25a

Browse files
committed
Changed compilerOptions module to esnext and updated tslint key names
1 parent 12fc442 commit 94cf25a

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

src/tsconfig.app.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../out-tsc/app",
5-
"module": "es2015",
65
"types": [],
76
"forceConsistentCasingInFileNames": false
87
},

src/tsconfig.spec.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../out-tsc/spec",
5-
"module": "commonjs",
65
"types": [
76
"jasmine",
87
"node"

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
"compileOnSave": false,
33
"compilerOptions": {
44
"baseUrl": "./",
5+
"module": "esnext",
56
"outDir": "./dist/out-tsc",
67
"sourceMap": true,
78
"declaration": false,
89
"moduleResolution": "node",
910
"emitDecoratorMetadata": true,
1011
"experimentalDecorators": true,
1112
"forceConsistentCasingInFileNames": false,
12-
"target": "es5",
13+
"target": "es2015",
1314
"typeRoots": [
1415
"node_modules/@types"
1516
],

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": false,
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)