Skip to content

Commit c2331ae

Browse files
committed
angular11
1 parent 812569b commit c2331ae

File tree

8 files changed

+6272
-2869
lines changed

8 files changed

+6272
-2869
lines changed

view/angular.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
"optimization": true,
6060
"outputHashing": "all",
6161
"sourceMap": false,
62-
"extractCss": true,
6362
"namedChunks": false,
6463
"extractLicenses": true,
6564
"vendorChunk": false,

view/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",

view/package-lock.json

Lines changed: 6232 additions & 2811 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

view/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
"private": true,
1313
"dependencies": {
1414
"@angular/animations": "^11.2.7",
15-
"@angular/cdk": "^10.1.2",
15+
"@angular/cdk": "^11.2.6",
1616
"@angular/common": "~11.2.7",
1717
"@angular/compiler": "~11.2.7",
1818
"@angular/core": "~11.2.7",
1919
"@angular/forms": "~11.2.7",
2020
"@angular/localize": "^11.2.7",
21-
"@angular/material": "^10.1.2",
21+
"@angular/material": "^11.2.6",
2222
"@angular/platform-browser": "~11.2.7",
2323
"@angular/platform-browser-dynamic": "~11.2.7",
2424
"@angular/router": "~11.2.7",
@@ -28,30 +28,30 @@
2828
"js-sha512": "^0.8.0",
2929
"king-node": "^1.0.14",
3030
"moment": "^2.27.0",
31-
"ng2-adsense": "^8.0.1",
31+
"ng2-adsense": "^9.1.0",
3232
"ng2-file-upload": "^1.4.0",
3333
"ngx-sortablejs": "^11.1.0",
34-
"rxjs": "~6.5.5",
34+
"rxjs": "~6.6.7",
3535
"simplemde": "^1.11.2",
3636
"sortablejs": "^1.10.2",
3737
"tslib": "^2.0.0",
3838
"zone.js": "~0.10.3"
3939
},
4040
"devDependencies": {
41-
"@angular-devkit/build-angular": "~0.1000.5",
42-
"@angular/cli": "~10.0.5",
41+
"@angular-devkit/build-angular": "~0.1102.6",
42+
"@angular/cli": "~11.2.6",
4343
"@angular/compiler-cli": "~11.2.7",
44-
"@types/jasmine": "~3.5.0",
44+
"@types/jasmine": "~3.6.0",
4545
"@types/jasminewd2": "~2.0.3",
4646
"@types/node": "^12.11.1",
4747
"@types/sortablejs": "^1.10.5",
4848
"codelyzer": "^6.0.0",
49-
"jasmine-core": "~3.5.0",
49+
"jasmine-core": "~3.6.0",
5050
"jasmine-spec-reporter": "~5.0.0",
51-
"karma": "~5.0.0",
51+
"karma": "~6.3.2",
5252
"karma-chrome-launcher": "~3.1.0",
5353
"karma-coverage-istanbul-reporter": "~3.0.2",
54-
"karma-jasmine": "~3.3.0",
54+
"karma-jasmine": "~4.0.0",
5555
"karma-jasmine-html-reporter": "^1.5.0",
5656
"protractor": "~7.0.0",
5757
"ts-node": "~8.3.0",

view/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": []

view/tsconfig.base.json

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

view/tsconfig.json

Lines changed: 27 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,29 @@
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+
"forceConsistentCasingInFileNames": true,
8+
"strict": true,
9+
"strictNullChecks": false,
10+
"noImplicitReturns": true,
11+
"noFallthroughCasesInSwitch": true,
12+
"sourceMap": true,
13+
"declaration": false,
14+
"downlevelIteration": true,
15+
"experimentalDecorators": true,
16+
"moduleResolution": "node",
17+
"importHelpers": true,
18+
"target": "es2015",
19+
"module": "es2020",
20+
"lib": [
21+
"es2018",
22+
"dom"
23+
]
24+
},
25+
"angularCompilerOptions": {
26+
"strictInjectionParameters": true,
27+
"strictTemplates": true
28+
}
1729
}

view/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)