Skip to content

Commit 8525bc9

Browse files
committed
update to angular 11
1 parent 736364f commit 8525bc9

File tree

7 files changed

+37
-55
lines changed

7 files changed

+37
-55
lines changed

angular.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
"optimization": true,
4444
"outputHashing": "all",
4545
"sourceMap": false,
46-
"extractCss": true,
4746
"namedChunks": false,
4847
"extractLicenses": true,
4948
"vendorChunk": false,

e2e/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* To learn more about this file see: https://angular.io/config/tsconfig. */
22
{
3-
"extends": "../tsconfig.base.json",
3+
"extends": "../tsconfig.json",
44
"compilerOptions": {
55
"outDir": "../out-tsc/e2e",
66
"module": "commonjs",

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/animations": "~10.0.9",
15-
"@angular/common": "~10.0.9",
16-
"@angular/compiler": "~10.0.9",
17-
"@angular/core": "~10.0.9",
18-
"@angular/forms": "~10.0.9",
19-
"@angular/platform-browser": "~10.0.9",
20-
"@angular/platform-browser-dynamic": "~10.0.9",
21-
"@angular/router": "~10.0.9",
14+
"@angular/animations": "~11.2.14",
15+
"@angular/common": "~11.2.14",
16+
"@angular/compiler": "~11.2.14",
17+
"@angular/core": "~11.2.14",
18+
"@angular/forms": "~11.2.14",
19+
"@angular/platform-browser": "~11.2.14",
20+
"@angular/platform-browser-dynamic": "~11.2.14",
21+
"@angular/router": "~11.2.14",
2222
"@devexpress/analytics-core": "~21.1.3",
2323
"devexpress-dashboard": "~21.1.3",
2424
"devexpress-dashboard-angular": "~21.1.3",
@@ -29,23 +29,23 @@
2929
"zone.js": "~0.10.3"
3030
},
3131
"devDependencies": {
32-
"@angular-devkit/build-angular": "~0.1000.6",
33-
"@angular/cli": "~10.0.6",
34-
"@angular/compiler-cli": "~10.0.9",
32+
"@angular-devkit/build-angular": "~0.1102.14",
33+
"@angular/cli": "~11.2.14",
34+
"@angular/compiler-cli": "~11.2.14",
3535
"@types/node": "^12.11.1",
36-
"@types/jasmine": "~3.5.0",
36+
"@types/jasmine": "~3.6.0",
3737
"@types/jasminewd2": "~2.0.3",
3838
"codelyzer": "^6.0.0",
39-
"jasmine-core": "~3.5.0",
39+
"jasmine-core": "~3.6.0",
4040
"jasmine-spec-reporter": "~5.0.0",
41-
"karma": "~5.0.0",
41+
"karma": "~6.3.4",
4242
"karma-chrome-launcher": "~3.1.0",
4343
"karma-coverage-istanbul-reporter": "~3.0.2",
44-
"karma-jasmine": "~3.3.0",
44+
"karma-jasmine": "~4.0.0",
4545
"karma-jasmine-html-reporter": "^1.5.0",
4646
"protractor": "~7.0.0",
4747
"ts-node": "~8.3.0",
4848
"tslint": "~6.1.0",
49-
"typescript": "~3.9.5"
49+
"typescript": "~4.1.6"
5050
}
5151
}

tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* To learn more about this file see: https://angular.io/config/tsconfig. */
22
{
3-
"extends": "./tsconfig.base.json",
3+
"extends": "./tsconfig.json",
44
"compilerOptions": {
55
"outDir": "./out-tsc/app",
66
"types": []

tsconfig.base.json

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

tsconfig.json

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
1-
/*
2-
This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience.
3-
It is not intended to be used to perform a compilation.
4-
5-
To learn more about this file see: https://angular.io/config/solution-tsconfig.
6-
*/
1+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
72
{
8-
"files": [],
9-
"references": [
10-
{
11-
"path": "./tsconfig.app.json"
12-
},
13-
{
14-
"path": "./tsconfig.spec.json"
15-
}
16-
]
3+
"compileOnSave": false,
4+
"compilerOptions": {
5+
"baseUrl": "./",
6+
"outDir": "./dist/out-tsc",
7+
"sourceMap": true,
8+
"declaration": false,
9+
"downlevelIteration": true,
10+
"experimentalDecorators": true,
11+
"moduleResolution": "node",
12+
"importHelpers": true,
13+
"target": "es2015",
14+
"module": "es2020",
15+
"lib": [
16+
"es2018",
17+
"dom"
18+
]
19+
}
1720
}

tsconfig.spec.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* To learn more about this file see: https://angular.io/config/tsconfig. */
22
{
3-
"extends": "./tsconfig.base.json",
3+
"extends": "./tsconfig.json",
44
"compilerOptions": {
55
"outDir": "./out-tsc/spec",
66
"types": [

0 commit comments

Comments
 (0)