cubetiq-ts-utils/.vscode/launch.json
Sambo Chea 9e9cbe1162
All checks were successful
continuous-integration/drone/push Build is passing
Add log class and add some functins
Add jest for test units
Updated the package and lib
2021-03-10 20:23:49 +07:00

21 lines
700 B
JSON

{
// 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": "Jest Current File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["${relativeFile}"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"windows": {
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
}
}
]
}