aoc-automation
Version:
Advent of Code tool to automate the repetitive parts of AoC.
19 lines (18 loc) • 354 B
JavaScript
const launchJSON = () => {
return {
version: "0.2.0",
configurations: [
{
type: "node",
request: "launch",
name: "Launch Program",
program: "${file}",
preLaunchTask: "tsc: build - tsconfig.json"
}
]
};
};
var launchJSON_default = launchJSON;
export {
launchJSON_default as default
};