Files
patatapack2-distribution/.vscode/launch.json
Daniel Scalzi 419a4d5e91 Completed steps up to downloading forge universal jar for 1.8-1.12.
Next step is processing the version.json and transforming it into a deliverable module.
2020-01-12 01:36:36 -05:00

23 lines
685 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": [
"test",
"1.12.2",
"14.23.5.2847"
],
"preLaunchTask": "compile",
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
]
}
]
}