Created
March 30, 2017 00:54
-
-
Save duggiefresh/8ced48c305eefba94732738654688967 to your computer and use it in GitHub Desktop.
VS Code `launch.json` for ember-template-lint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Use IntelliSense to learn about possible Node.js debug attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "mocha", | |
"type": "node", | |
"request": "launch", | |
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", | |
"stopOnEntry": false, | |
"args": [ | |
"--no-timeouts", | |
"--colors" | |
], //you can specify paths to specific tests here | |
"cwd": "${workspaceRoot}", | |
"runtimeExecutable": null, | |
"env": { | |
"NODE_ENV": "testing" | |
} | |
}, | |
{ | |
"type": "node", | |
"request": "attach", | |
"name": "Attach to Process", | |
"port": 5858 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment