30 lines
939 B
JSON
30 lines
939 B
JSON
{
|
|
// 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": "REPL",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "node",
|
|
"runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"],
|
|
"args": ["repl.ts"],
|
|
"cwd": "${workspaceRoot}",
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"skipFiles": ["<node_internals>/**"]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Mocha",
|
|
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
|
|
"args": ["test/**/*.test.ts"],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"protocol": "inspector"
|
|
}
|
|
]
|
|
}
|