publikator/.vscode/launch.json
Lynn Smeria 15483c0354 Change tag parser for better file support
Should support mp3, ogg, wav, flac and more.
2018-08-20 12:49:08 +02:00

21 lines
452 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Organise",
"args": ["${workspaceFolder}/src/cli.js", "organise", "test", "out"],
"console": "integratedTerminal",
"skipFiles": [
"${workspaceRoot}/node_modules/**/*.js",
"<node_internals>/**/*.js"
],
"env": {
"DEBUG": "publikator:*",
"DEBUG_COLORS": "1"
}
}
]
}