Skip to content
Snippets Groups Projects
Commit 716ee557 authored by Cédric Moreau's avatar Cédric Moreau
Browse files

.vscode example

parent 2738ff99
No related branches found
No related tags found
No related merge requests found
{
// Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
// Pointez pour afficher la description des attributs existants.
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "direct_start",
"program": "${workspaceFolder}/bin/duniter",
"args": [
"direct_start"
]
},
{
"type": "node",
"request": "launch",
"name": "Mocha CURRENT FILE",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"--opts", "\"\"",
"${fileDirname}/${fileBasenameNoExtension}.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Mocha ALL TESTS",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"${workspaceFolder}/test"
]
}
]
}
\ No newline at end of file
{
"files.exclude": {
"*.js": true,
"*.d.ts": true,
"*.map": true,
"app/**/*.js": true,
"app/**/*.d.ts": true,
"app/**/*.map": true,
"**/.git": true
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment