Skip to content

Commit d043337

Browse files
committed
Updates @angular/core and @angular/cli.
1 parent f2734c5 commit d043337

File tree

8 files changed

+2339
-2253
lines changed

8 files changed

+2339
-2253
lines changed

angular.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"optimization": true,
3434
"outputHashing": "all",
3535
"sourceMap": false,
36-
"extractCss": true,
3736
"namedChunks": false,
3837
"aot": true,
3938
"extractLicenses": true,

e2e/tsconfig.e2e.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../tsconfig.base.json",
2+
"extends": "../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../out-tsc/e2e",
55
"baseUrl": "./",

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,19 @@
5050
"private": false,
5151
"peerDependencies": {},
5252
"devDependencies": {
53-
"@angular-devkit/build-angular": "~0.1000.4",
54-
"@angular/animations": "10.0.5",
55-
"@angular/cli": "10.0.4",
56-
"@angular/common": "10.0.5",
57-
"@angular/compiler": "10.0.5",
58-
"@angular/compiler-cli": "10.0.5",
59-
"@angular/core": "10.0.5",
60-
"@angular/platform-browser": "10.0.5",
61-
"@angular/platform-browser-dynamic": "10.0.5",
62-
"@angular/platform-server": "10.0.5",
53+
"@angular-devkit/build-angular": "~0.1102.1",
54+
"@angular/animations": "11.2.1",
55+
"@angular/cli": "11.2.1",
56+
"@angular/common": "11.2.1",
57+
"@angular/compiler": "11.2.1",
58+
"@angular/compiler-cli": "11.2.1",
59+
"@angular/core": "11.2.1",
60+
"@angular/platform-browser": "11.2.1",
61+
"@angular/platform-browser-dynamic": "11.2.1",
62+
"@angular/platform-server": "11.2.1",
6363
"@nguniversal/express-engine": "^10.0.1",
6464
"@thisissoon/schematics": "^1.0.0-alpha.17",
65-
"@types/jasmine": "^3.5.11",
65+
"@types/jasmine": "~3.6.0",
6666
"@types/jasminewd2": "~2.0.2",
6767
"@types/node": "^14.0.25",
6868
"codelyzer": "^6.0.0",
@@ -72,17 +72,17 @@
7272
"express": "^4.16.3",
7373
"husky": "^4.2.5",
7474
"intersection-observer": "^0.11.0",
75-
"jasmine-core": "^3.6.0",
75+
"jasmine-core": "~3.6.0",
7676
"jasmine-spec-reporter": "~5.0.0",
77-
"karma": "~5.1.0",
77+
"karma": "~6.1.1",
7878
"karma-chrome-launcher": "~3.1.0",
7979
"karma-cli": "^2.0.0",
8080
"karma-coverage-istanbul-reporter": "~3.0.2",
81-
"karma-jasmine": "~3.3.0",
81+
"karma-jasmine": "~4.0.0",
8282
"karma-jasmine-html-reporter": "^1.5.0",
8383
"karma-mocha-reporter": "^2.2.5",
8484
"lint-staged": "^10.2.11",
85-
"ng-packagr": "^10.0.0",
85+
"ng-packagr": "^11.2.2",
8686
"prettier": "^2.0.5",
8787
"protractor": "^7.0.0",
8888
"rxjs": "^6.6.0",
@@ -97,7 +97,7 @@
9797
"ts-node": "^8.10.2",
9898
"tslint": "~6.1.0",
9999
"tslint-config-prettier": "^1.16.0",
100-
"typescript": "~3.9.7",
100+
"typescript": "~4.1.5",
101101
"zone.js": "~0.10.3"
102102
},
103103
"config": {
@@ -134,4 +134,4 @@
134134
"tslib": "^2.0.0",
135135
"yarn": "^1.22.10"
136136
}
137-
}
137+
}

src/tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../tsconfig.base.json",
2+
"extends": "../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../out-tsc/app",
55
"baseUrl": "./",

src/tsconfig.spec.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../tsconfig.base.json",
2+
"extends": "../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../out-tsc/spec",
55
"baseUrl": "./",

tsconfig.base.json

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

tsconfig.json

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
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-
*/
71
{
8-
"files": [],
9-
"references": [
10-
{
11-
"path": "./src/tsconfig.app.json"
12-
},
13-
{
14-
"path": "./src/tsconfig.spec.json"
15-
},
16-
{
17-
"path": "./src/tsconfig.server.json"
18-
}
19-
]
20-
}
2+
"compileOnSave": false,
3+
"compilerOptions": {
4+
"module": "es2020",
5+
"outDir": "./dist/out-tsc",
6+
"sourceMap": true,
7+
"declaration": false,
8+
"moduleResolution": "node",
9+
"emitDecoratorMetadata": true,
10+
"experimentalDecorators": true,
11+
"target": "es5",
12+
"typeRoots": ["node_modules/@types"],
13+
"lib": ["es2017", "dom"]
14+
}
15+
}

0 commit comments

Comments
 (0)