-
Notifications
You must be signed in to change notification settings - Fork 393
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLDR-14802 VSCode JavaScript / Java config (#1390)
- Vetur for Vue3 work - 'attach to process' for Java debugger - launch configs for JUnit
- Loading branch information
Showing
4 changed files
with
45 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "java", | ||
"name": "Launch Current File", | ||
"request": "launch", | ||
"mainClass": "${file}", | ||
"vmArgs": [ | ||
"-DCLDR_DIR=${workspaceFolder}" | ||
] | ||
}, | ||
{ | ||
"type": "java", | ||
"request": "attach", | ||
"name": "Attach by Process ID", | ||
"processId": "${command:PickJavaProcess}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
{ | ||
"java.test.config": { | ||
"env": { | ||
"CLDR_DIR": "${workspaceRoot}", | ||
"CLDR_ENVIRONMENT": "UNITTEST" | ||
} | ||
} | ||
"java.test.config": [{ | ||
"name": "cldrtest", | ||
"workingDirectory": "${workspaceFolder}", | ||
"vmargs": [ | ||
"-DCLDR_DIR=${workspaceFolder}", | ||
"-DCLDR_ENVIRONMENT=UNITTEST" | ||
] | ||
}], | ||
"java.test.defaultConfig": "cldrtest", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"include": [ | ||
"./src/**/*" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Vetur configuration for where to find Vue.js files | ||
module.exports = { | ||
settings: { | ||
}, | ||
projects: [ | ||
'./tools/cldr-apps/js' | ||
] | ||
} |