mirror of
https://github.com/FlipsideCrypto/snowflake-promise.git
synced 2026-02-06 11:18:25 +00:00
29 lines
846 B
JSON
29 lines
846 B
JSON
{
|
|
// Use IntelliSense to find out which attributes exist for node debugging
|
|
// Use hover for the description of the existing attributes
|
|
// For further information visit https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Program",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/src/app.ts",
|
|
"cwd": "${workspaceRoot}",
|
|
"outFiles": [ "${workspaceRoot}/prod/**/*.js" ],
|
|
"sourceMaps": true,
|
|
"preLaunchTask": "build"
|
|
},
|
|
{
|
|
"name": "Launch test.ts",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/src/test.ts",
|
|
"cwd": "${workspaceRoot}",
|
|
"outFiles": [ "${workspaceRoot}/prod/**/*.js" ],
|
|
"sourceMaps": true,
|
|
"preLaunchTask": "build"
|
|
}
|
|
]
|
|
}
|