Moved java executable to its own util class. Fixed artifact resolution links for older versions of forge. 1.13 support is going to be difficult because forge does not make anything developer friendly.
22 lines
650 B
JSON
22 lines
650 B
JSON
{
|
|
// 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": "node",
|
|
"request": "launch",
|
|
"name": "Launch Program",
|
|
"program": "${workspaceFolder}\\src\\index.ts",
|
|
"args": [
|
|
"g",
|
|
"distro"
|
|
],
|
|
"preLaunchTask": "compile",
|
|
"outFiles": [
|
|
"${workspaceFolder}/dist/**/*.js"
|
|
]
|
|
}
|
|
]
|
|
} |