|
@@ -1,26 +1,24 @@
|
|
|
{
|
|
|
- // Use IntelliSense to learn about possible attributes.
|
|
|
- // Hover to view descriptions of existing attributes.
|
|
|
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
- "version": "0.2.0",
|
|
|
- "configurations": [
|
|
|
- {
|
|
|
- "type": "node",
|
|
|
- "request": "launch",
|
|
|
- "name": "Launch",
|
|
|
- "program": "${workspaceFolder}/src/index.ts",
|
|
|
- "preLaunchTask": "prelaunch",
|
|
|
- "outFiles": ["${workspaceFolder}/out/**/*.js"],
|
|
|
- "console": "integratedTerminal"
|
|
|
- },
|
|
|
- {
|
|
|
- "type": "node",
|
|
|
- "request": "launch",
|
|
|
- "name": "test.ts",
|
|
|
- "program": "${workspaceFolder}/src/test.ts",
|
|
|
- "preLaunchTask": "prelaunch",
|
|
|
- "outFiles": ["${workspaceFolder}/out/**/*.js"],
|
|
|
- "console": "integratedTerminal"
|
|
|
- },
|
|
|
- ]
|
|
|
+ // https://code.visualstudio.com/docs/editor/debugging#_launch-configurations
|
|
|
+ "version": "0.2.0",
|
|
|
+ "configurations": [
|
|
|
+ {
|
|
|
+ "type": "node",
|
|
|
+ "request": "launch",
|
|
|
+ "name": "Launch",
|
|
|
+ "program": "${workspaceFolder}/src/index.ts",
|
|
|
+ "preLaunchTask": "prelaunch",
|
|
|
+ "outFiles": ["${workspaceFolder}/out/**/*.js"],
|
|
|
+ "console": "integratedTerminal"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "type": "node",
|
|
|
+ "request": "launch",
|
|
|
+ "name": "test.ts",
|
|
|
+ "program": "${workspaceFolder}/src/test.ts",
|
|
|
+ "preLaunchTask": "prelaunch",
|
|
|
+ "outFiles": ["${workspaceFolder}/out/**/*.js"],
|
|
|
+ "console": "integratedTerminal"
|
|
|
+ },
|
|
|
+ ]
|
|
|
}
|