Skip to content

Commit 39e9243

Browse files
committed
update to angular 13 and interacto 7.1
1 parent 103b855 commit 39e9243

32 files changed

+14423
-18011
lines changed

.browserslistrc

+8-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22
# For additional information regarding the format and rule options, please see:
33
# https://github.com/browserslist/browserslist#queries
44

5+
# For the full list of supported browsers by the Angular framework, please see:
6+
# https://angular.io/guide/browser-support
7+
58
# You can see what browsers were selected by your queries by running:
69
# npx browserslist
710

8-
> 0.5%
9-
last 2 versions
11+
last 1 Chrome version
12+
last 1 Firefox version
13+
last 2 Edge major versions
14+
last 2 Safari major versions
15+
last 2 iOS major versions
1016
Firefox ESR
11-
not dead
12-
not IE 9-11 # For IE 9-11 support, remove 'not'.

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ indent_size = 2
88
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

11+
[*.ts]
12+
quote_type = single
13+
1114
[*.md]
1215
max_line_length = off
1316
trim_trailing_whitespace = false

.eslintrc.json

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"root": true,
3+
"ignorePatterns": [
4+
"projects/**/*"
5+
],
6+
"overrides": [
7+
{
8+
"files": [
9+
"*.ts"
10+
],
11+
"parserOptions": {
12+
"project": [
13+
"tsconfig.json"
14+
],
15+
"createDefaultProgram": true
16+
},
17+
"extends": [
18+
"plugin:@angular-eslint/recommended",
19+
"plugin:@angular-eslint/template/process-inline-templates"
20+
],
21+
"rules": {
22+
"@angular-eslint/directive-selector": [
23+
"error",
24+
{
25+
"type": "attribute",
26+
"prefix": "app",
27+
"style": "camelCase"
28+
}
29+
],
30+
"@angular-eslint/component-selector": [
31+
"error",
32+
{
33+
"type": "element",
34+
"prefix": "app",
35+
"style": "kebab-case"
36+
}
37+
]
38+
}
39+
},
40+
{
41+
"files": [
42+
"*.html"
43+
],
44+
"extends": [
45+
"plugin:@angular-eslint/template/recommended"
46+
],
47+
"rules": {}
48+
}
49+
]
50+
}

.vscode/extensions.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
3+
"recommendations": ["angular.ng-template"]
4+
}

.vscode/launch.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
3+
"version": "0.2.0",
4+
"configurations": [
5+
{
6+
"name": "ng serve",
7+
"type": "pwa-chrome",
8+
"request": "launch",
9+
"preLaunchTask": "npm: start",
10+
"url": "http://localhost:4200/"
11+
},
12+
{
13+
"name": "ng test",
14+
"type": "chrome",
15+
"request": "launch",
16+
"preLaunchTask": "npm: test",
17+
"url": "http://localhost:9876/debug.html"
18+
}
19+
]
20+
}

.vscode/tasks.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
3+
"version": "2.0.0",
4+
"tasks": [
5+
{
6+
"type": "npm",
7+
"script": "start",
8+
"isBackground": true,
9+
"problemMatcher": {
10+
"owner": "typescript",
11+
"pattern": "$tsc",
12+
"background": {
13+
"activeOnStart": true,
14+
"beginsPattern": {
15+
"regexp": "(.*?)"
16+
},
17+
"endsPattern": {
18+
"regexp": "bundle generation complete"
19+
}
20+
}
21+
}
22+
},
23+
{
24+
"type": "npm",
25+
"script": "test",
26+
"isBackground": true,
27+
"problemMatcher": {
28+
"owner": "typescript",
29+
"pattern": "$tsc",
30+
"background": {
31+
"activeOnStart": true,
32+
"beginsPattern": {
33+
"regexp": "(.*?)"
34+
},
35+
"endsPattern": {
36+
"regexp": "bundle generation complete"
37+
}
38+
}
39+
}
40+
}
41+
]
42+
}

angular.json

+44-54
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
"projects": {
66
"example-angular": {
77
"projectType": "application",
8-
"schematics": {},
8+
"schematics": {
9+
"@schematics/angular:application": {
10+
"strict": true
11+
}
12+
},
913
"root": "",
1014
"sourceRoot": "src",
1115
"prefix": "app",
@@ -25,54 +29,52 @@
2529
"styles": [
2630
"src/styles.css"
2731
],
28-
"scripts": [],
29-
"vendorChunk": true,
30-
"extractLicenses": false,
31-
"buildOptimizer": false,
32-
"sourceMap": true,
33-
"optimization": false,
34-
"namedChunks": true
32+
"scripts": []
3533
},
3634
"configurations": {
3735
"production": {
38-
"fileReplacements": [
39-
{
40-
"replace": "src/environments/environment.ts",
41-
"with": "src/environments/environment.prod.ts"
42-
}
43-
],
44-
"optimization": true,
45-
"outputHashing": "all",
46-
"sourceMap": false,
47-
"namedChunks": false,
48-
"extractLicenses": true,
49-
"vendorChunk": false,
50-
"buildOptimizer": true,
5136
"budgets": [
5237
{
5338
"type": "initial",
54-
"maximumWarning": "2mb",
55-
"maximumError": "5mb"
39+
"maximumWarning": "500kb",
40+
"maximumError": "1mb"
5641
},
5742
{
5843
"type": "anyComponentStyle",
59-
"maximumWarning": "6kb",
60-
"maximumError": "10kb"
44+
"maximumWarning": "2kb",
45+
"maximumError": "4kb"
6146
}
62-
]
47+
],
48+
"fileReplacements": [
49+
{
50+
"replace": "src/environments/environment.ts",
51+
"with": "src/environments/environment.prod.ts"
52+
}
53+
],
54+
"outputHashing": "all"
55+
},
56+
"development": {
57+
"buildOptimizer": false,
58+
"optimization": false,
59+
"vendorChunk": true,
60+
"extractLicenses": false,
61+
"sourceMap": true,
62+
"namedChunks": true
6363
}
64-
}
64+
},
65+
"defaultConfiguration": "production"
6566
},
6667
"serve": {
6768
"builder": "@angular-devkit/build-angular:dev-server",
68-
"options": {
69-
"browserTarget": "example-angular:build"
70-
},
7169
"configurations": {
7270
"production": {
7371
"browserTarget": "example-angular:build:production"
72+
},
73+
"development": {
74+
"browserTarget": "example-angular:build:development"
7475
}
75-
}
76+
},
77+
"defaultConfiguration": "development"
7678
},
7779
"extract-i18n": {
7880
"builder": "@angular-devkit/build-angular:extract-i18n",
@@ -98,31 +100,19 @@
98100
}
99101
},
100102
"lint": {
101-
"builder": "@angular-devkit/build-angular:tslint",
103+
"builder": "@angular-eslint/builder:lint",
102104
"options": {
103-
"tsConfig": [
104-
"tsconfig.app.json",
105-
"tsconfig.spec.json",
106-
"e2e/tsconfig.json"
107-
],
108-
"exclude": [
109-
"**/node_modules/**"
105+
"lintFilePatterns": [
106+
"src/**/*.ts",
107+
"src/**/*.html"
110108
]
111109
}
112-
},
113-
"e2e": {
114-
"builder": "@angular-devkit/build-angular:protractor",
115-
"options": {
116-
"protractorConfig": "e2e/protractor.conf.js",
117-
"devServerTarget": "example-angular:serve"
118-
},
119-
"configurations": {
120-
"production": {
121-
"devServerTarget": "example-angular:serve:production"
122-
}
123-
}
124110
}
125111
}
126-
}},
127-
"defaultProject": "example-angular"
128-
}
112+
}
113+
},
114+
"defaultProject": "example-angular",
115+
"cli": {
116+
"defaultCollection": "@angular-eslint/schematics"
117+
}
118+
}

e2e/protractor.conf.js

-32
This file was deleted.

e2e/src/app.e2e-spec.ts

-23
This file was deleted.

e2e/src/app.po.ts

-11
This file was deleted.

e2e/tsconfig.json

-13
This file was deleted.

0 commit comments

Comments
 (0)