forked from civiform/civiform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
civiform.code-workspace
62 lines (62 loc) · 1.33 KB
/
civiform.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"folders": [
{
"path": "server"
},
{
"path": "."
}
],
"settings": {
"files.watcherExclude": {
"**/target": true,
"**/.bloop": true
},
"search.exclude": {
"*/target": true,
"**/.bloop": true
},
"java.configuration.updateBuildConfiguration": "automatic"
},
"extensions": {
"recommendations": [
"vscjava.vscode-java-pack",
"github.vscode-pull-request-github",
"knisterpeter.vscode-github",
"ms-azuretools.vscode-docker",
"hashicorp.terraform",
"ms-ossdata.vscode-postgresql",
"bradlc.vscode-tailwindcss",
"scala-lang.scala",
"redhat.vscode-yaml",
"dbaeumer.vscode-eslint",
"rvest.vs-code-prettier-eslint"
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Attach to Civiform Browser Tests",
"request": "attach",
"hostName": "localhost",
"port": "9457"
},
{
"type": "java",
"name": "Attach to Civiform Unit Tests",
"request": "attach",
"hostName": "localhost",
"port": "8459"
},
{
"type": "java",
"name": "Attach to Civiform Dev",
"request": "attach",
"hostName": "localhost",
"port": "8457"
}
]
}
}