10000 Optimizations: Routing for settings · KyleSmith0905/Sorting-Algorithm@3f054de · GitHub
[go: up one dir, main page]

Skip to content

Commit 3f054de

Browse files
committed
Optimizations: Routing for settings
From here forward, I will start updating the repository more accurately.
1 parent e6905b0 commit 3f054de

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+10431
-8373
lines changed

.browserslistrc

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

.editorconfig

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

.eslintrc.js

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// eslint-disable-next-line no-undef
2+
module.exports = {
3+
'env': {
4+
'browser': true,
5+
'es2021': true
6+
},
7+
'extends': [
8+
'eslint:recommended',
9+
'plugin:@typescript-eslint/recommended'
10+
],
11+
'parser': '@typescript-eslint/parser',
12+
'parserOptions': {
13+
'ecmaVersion': 13,
14+
'sourceType': 'module'
15+
},
16+
'plugins': [
17+
'@typescript-eslint'
18+
],
19+
'rules': {
20+
'indent': [
21+
'error',
22+
'tab',
23+
{ 'SwitchCase': 1 }
24+
],
25+
'linebreak-style': [
26+
'error',
27+
'windows'
28+
],
29+
'quotes': [
30+
'error',
31+
'single'
32+
],
33+
'semi': [
34+
'error',
35+
'always'
36+
],
37+
'@typescript-eslint/no-explicit-any': 'off'
38+
}
39+
};

angular.json

Lines changed: 26 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,12 @@
2121
"index": "src/index.html",
2222
"main": "src/main.ts",
2323
"polyfills": "src/polyfills.ts",
24-
"tsConfig": "tsconfig.app.json",
2524
"assets": [
26-
"src/favicon.ico",
27-
"src/assets"
28-
],
25+
"src/favicon.ico"
26+
],
2927
"styles": [
3028
"src/styles.css"
31-
],
29+
],
3230
"scripts": []
3331
},
3432
"configurations": {
@@ -38,21 +36,21 @@
3836
"type": "initial",
3937
"maximumWarning": "500kb",
4038
"maximumError": "1mb"
41-
},
39+
},
4240
{
4341
"type": "anyComponentStyle",
4442
"maximumWarning": "2kb",
4543
"maximumError": "4kb"
46-
}
44+
}
4745
],
4846
"fileReplacements": [
4947
{
5048
"replace": "src/environments/environment.ts",
5149
"with": "src/environments/environment.prod.ts"
52-
}
50+
}
5351
],
5452
"outputHashing": "all"
55-
},
53+
},
5654
"development": {
5755
"buildOptimizer": false,
5856
"optimization": false,
@@ -63,24 +61,24 @@
6361
}
6462
},
6563
"defaultConfiguration": "production"
66-
},
64+
},
6765
"serve": {
6866
"builder": "@angular-devkit/build-angular:dev-server",
6967
"configurations": {
7068
"production": {
7169
"browserTarget": "Sorting:build:production"
72-
},
70+
},
7371
"development": {
7472
"browserTarget": "Sorting:build:development"
75-
}
73+
}
7674
},
7775
"defaultConfiguration": "development"
78-
},
76+
},
7977
"extract-i18n": {
8078
"builder": "@angular-devkit/build-angular:extract-i18n",
8179
"options": {
8280
"browserTarget": "Sorting:build"
83-
}
81+
}
8482
},
8583
"test": {
8684
"builder": "@angular-devkit/build-angular:karma",
@@ -92,28 +90,27 @@
9290
"assets": [
9391
"src/favicon.ico",
9492
"src/assets"
95-
],
93+
],
9694
"styles": [
9795
"src/styles.css"
98-
],
96+
],
9997
"scripts": []
10098
}
10199
},
102100
"server": {
103101
"builder": "@angular-devkit/build-angular:server",
104102
"options": {
105103
"outputPath": "dist/Sorting/server",
106-
"main": "server.ts",
107-
"tsConfig": "tsconfig.server.json"
108-
},
104+
"main": "server.ts"
105+
},
109106
"configurations": {
110107
"production": {
111108
"outputHashing": "media",
112109
"fileReplacements": [
113110
{
114111
"replace": "src/environments/environment.ts",
115112
"with": "src/environments/environment.prod.ts"
116-
}
113+
}
117114
]
118115
},
119116
"development": {
@@ -123,42 +120,42 @@
123120
}
124121
},
125122
"defaultConfiguration": "production"
126-
},
123+
},
127124
"serve-ssr": {
128125
"builder": "@nguniversal/builders:ssr-dev-server",
129126
"configurations": {
130127
"development": {
131128
"browserTarget": "Sorting:build:development",
132129
"serverTarget": "Sorting:server:development"
133-
},
130+
},
134131
"production": {
135132
"browserTarget": "Sorting:build:production",
136133
"serverTarget": "Sorting:server:production"
137-
}
134+
}
138135
},
139136
"defaultConfiguration": "development"
140-
},
137+
},
141138
"prerender": {
142139
"builder": "@nguniversal/builders:prerender",
143140
"options": {
144141
"routes": [
145142
"/"
146-
]
143+
]
147144
},
148145
"configurations": {
149146
"production": {
150147
"browserTarget": "Sorting:build:production",
151148
"serverTarget": "Sorting:server:production"
152-
},
149+
},
153150
"development": {
154151
"browserTarget": "Sorting:build:development",
155152
"serverTarget": "Sorting:server:development"
156-
}
153+
}
157154
},
158155
"defaultConfiguration": "production"
159-
}
156+
}
160157
}
161158
}
162159
},
163160
"defaultProject": "Sorting"
164-
}
161+
}

karma.conf.js

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

0 commit comments

Comments
 (0)
0