UNPKG

aoc-automation

Version:

Advent of Code tool to automate the repetitive parts of AoC.

17 lines (15 loc) 270 B
const launchJSON = () => { return { version: "0.2.0", configurations: [ { type: "node", request: "launch", name: "Launch Program", program: "${file}", preLaunchTask: "tsc: build - tsconfig.json", }, ], }; }; export default launchJSON;