Skip to content

Commit da56a7b

Browse files
committed
Update Angular project, switch to Angular CLI
1 parent 7b462e5 commit da56a7b

39 files changed

Lines changed: 6782 additions & 35814 deletions

ui/.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
ij_typescript_use_double_quotes = false
14+
15+
[*.md]
16+
max_line_length = off
17+
trim_trailing_whitespace = false

ui/.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

ui/.eslintrc.base.json

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

ui/.eslintrc.json

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

ui/.gitignore

Lines changed: 17 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,43 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
1+
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
22

3-
# compiled output
4-
dist
5-
tmp
3+
# Compiled output
4+
/dist
5+
/tmp
66
/out-tsc
7+
/bazel-out
78

8-
# dependencies
9-
node_modules
9+
# Node
10+
/node_modules
11+
npm-debug.log
12+
yarn-error.log
1013

1114
# IDEs and editors
12-
/.idea
15+
.idea/
1316
.project
1417
.classpath
1518
.c9/
1619
*.launch
1720
.settings/
1821
*.sublime-workspace
1922

20-
# IDE - VSCode
23+
# Visual Studio Code
2124
.vscode/*
2225
!.vscode/settings.json
2326
!.vscode/tasks.json
2427
!.vscode/launch.json
2528
!.vscode/extensions.json
29+
.history/*
2630

27-
# misc
28-
/.sass-cache
31+
# Miscellaneous
32+
/.angular/cache
33+
.sass-cache/
2934
/connect.lock
3035
/coverage
3136
/libpeerconnection.log
32-
npm-debug.log
33-
yarn-error.log
3437
testem.log
3538
/typings
39+
__screenshots__/
3640

37-
# System Files
41+
# System files
3842
.DS_Store
3943
Thumbs.db
40-
41-
.angular
42-
43-
.nx/cache
44-
.nx/workspace-data
45-
.cursor/rules/nx-rules.mdc
46-
.github/instructions/nx.instructions.md

ui/.prettierignore

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

ui/.prettierrc

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

ui/.vscode/extensions.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
{
2-
"recommendations": [
3-
"nrwl.angular-console",
4-
"esbenp.prettier-vscode",
5-
"firsttris.vscode-jest-runner",
6-
"ms-playwright.playwright",
7-
"dbaeumer.vscode-eslint"
8-
]
2+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
3+
"recommendations": ["angular.ng-template"]
94
}

ui/.vscode/launch.json

Lines changed: 20 additions & 0 deletions
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": "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+
}

ui/.vscode/settings.json

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

0 commit comments

Comments
 (0)