aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/.vscode
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-02-23 14:28:50 -0500
committersowgro <tpoke.ferrari@gmail.com>2025-02-23 14:28:50 -0500
commit1d46022ec65597c46f27788eae520f36f0bb0324 (patch)
tree1ef5e38477bcc3f763d3ef2f071c721404f94493 /ufund-ui/.vscode
parent2fc9729cdf220e03f43183a148f8b5780c50e515 (diff)
downloadJellySolutions-1d46022ec65597c46f27788eae520f36f0bb0324.tar.gz
JellySolutions-1d46022ec65597c46f27788eae520f36f0bb0324.tar.bz2
JellySolutions-1d46022ec65597c46f27788eae520f36f0bb0324.zip
Initialize angular project
Diffstat (limited to 'ufund-ui/.vscode')
-rw-r--r--ufund-ui/.vscode/extensions.json4
-rw-r--r--ufund-ui/.vscode/launch.json20
-rw-r--r--ufund-ui/.vscode/tasks.json42
3 files changed, 66 insertions, 0 deletions
diff --git a/ufund-ui/.vscode/extensions.json b/ufund-ui/.vscode/extensions.json
new file mode 100644
index 0000000..77b3745
--- /dev/null
+++ b/ufund-ui/.vscode/extensions.json
@@ -0,0 +1,4 @@
+{
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
+ "recommendations": ["angular.ng-template"]
+}
diff --git a/ufund-ui/.vscode/launch.json b/ufund-ui/.vscode/launch.json
new file mode 100644
index 0000000..925af83
--- /dev/null
+++ b/ufund-ui/.vscode/launch.json
@@ -0,0 +1,20 @@
+{
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "ng serve",
+ "type": "chrome",
+ "request": "launch",
+ "preLaunchTask": "npm: start",
+ "url": "http://localhost:4200/"
+ },
+ {
+ "name": "ng test",
+ "type": "chrome",
+ "request": "launch",
+ "preLaunchTask": "npm: test",
+ "url": "http://localhost:9876/debug.html"
+ }
+ ]
+}
diff --git a/ufund-ui/.vscode/tasks.json b/ufund-ui/.vscode/tasks.json
new file mode 100644
index 0000000..a298b5b
--- /dev/null
+++ b/ufund-ui/.vscode/tasks.json
@@ -0,0 +1,42 @@
+{
+ // For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "type": "npm",
+ "script": "start",
+ "isBackground": true,
+ "problemMatcher": {
+ "owner": "typescript",
+ "pattern": "$tsc",
+ "background": {
+ "activeOnStart": true,
+ "beginsPattern": {
+ "regexp": "(.*?)"
+ },
+ "endsPattern": {
+ "regexp": "bundle generation complete"
+ }
+ }
+ }
+ },
+ {
+ "type": "npm",
+ "script": "test",
+ "isBackground": true,
+ "problemMatcher": {
+ "owner": "typescript",
+ "pattern": "$tsc",
+ "background": {
+ "activeOnStart": true,
+ "beginsPattern": {
+ "regexp": "(.*?)"
+ },
+ "endsPattern": {
+ "regexp": "bundle generation complete"
+ }
+ }
+ }
+ }
+ ]
+}