Commit 8afef729 authored by Dorchies David's avatar Dorchies David
Browse files

Ajout de la configuration de débuggage dans vscode

Showing with 33 additions and 0 deletions
+33 -0
{
// 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": [
{
"name": "Launch Program",
"type": "node",
"request": "launch",
"program": "${file}",
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/build/**/*.js"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "buildspec"
}
]
}
\ No newline at end of file
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "buildspec",
"type": "npm",
"script": "buildspec",
"problemMatcher": []
}
]
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment