Skip to content

Commit 86cad07

Browse files
committed
chore: tsconfig target to es5
1 parent 49254ac commit 86cad07

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
- refactor(modals): `ViewChild` second parameter
66
- refactor(tsconfig): "module: "esnext", "target": "es6"
77
- chore: update `[email protected]` imports
8-
- chore(tslint): remove undefined rules
8+
- chore: update `[email protected]`
9+
- fix(collapse): `No provider for AnimationBuilder` add import `BrowserAnimationsModule` to app.module
10+
- fix(polyfill): import `web-animations-js`
11+
- chore(tslint): remove depracated/undefined rules
12+
- chore(tsconfig): set "target" to "es5" / IE11 compatible
913
- update: Angular to `v8.0.0`
1014
- update: `@angular/animations` to `^8.0.0`
1115
- update: `@angular/common` to `^8.0.0`
@@ -16,9 +20,12 @@
1620
- update: `@angular/platform-browser` to `^8.0.0`
1721
- update: `@angular/platform-browser-dynamic` to `^8.0.0`
1822
- update: `@angular/router` to `^8.0.0`
23+
- update: `@coreui/angular` to `^2.5.0`
1924
- update: `@coreui/coreui` to `^2.1.11`
25+
- update: `@coreui/coreui-plugin-chartjs-custom-tooltips` to `^1.3.1`
2026
- update: `core-js` to `^2.6.9`
2127
- update: `ng2-charts` to `^2.3.0`
28+
- update: `ngx-boottsrap` to `^4.2.0`
2229
- update: `rxjs` to `^6.5.2`
2330
- update: `tsickle` to `^0.35.0`
2431
- update: `tslib` to `^1.9.3`

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"typescript": "~3.4.5"
8181
},
8282
"engines": {
83-
"node": ">= 8.9.4",
84-
"npm": ">= 5.6.0"
83+
"node": ">= 12",
84+
"npm": ">= 6"
8585
}
8686
}

src/tsconfig.app.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,17 @@
44
"outDir": "../out-tsc/app",
55
"baseUrl": "./",
66
"module": "esnext",
7+
"target": "es5",
78
"types": [],
89
"paths": {
910
"@angular/*": [
1011
"../node_modules/@angular/*"
1112
]
1213
}
1314
},
15+
"angularCompilerOptions": {
16+
"enableIvy": false
17+
},
1418
"exclude": [
1519
"test.ts",
1620
"**/*.spec.ts"

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
"emitDecoratorMetadata": true,
1010
"experimentalDecorators": true,
1111
"module": "esnext",
12-
"target": "es6",
12+
"target": "es5",
1313
"typeRoots": [
1414
"node_modules/@types"
1515
],
1616
"lib": [
17-
"es2017",
17+
"esnext",
1818
"dom"
1919
]
2020
}

0 commit comments

Comments
 (0)