Skip to content

Commit

Permalink
fix: Improve types and add method (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
elribonazo authored Sep 30, 2023
1 parent 8055eac commit 468e590
Show file tree
Hide file tree
Showing 9 changed files with 429 additions and 322 deletions.
43 changes: 15 additions & 28 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "NODE DEBUG",
"program": "${workspaceFolder}/build/node-test/index.js",
"request": "launch",
"skipFiles": ["<node_internals>/**"],
"type": "node"
},
{
"type": "node",
"request": "launch",
"name": "TEST",
"program": "${workspaceRoot}/node_modules/jest/bin/jest.js",
"args": [
"--colors",
"--workerThreads",
"--maxWorkers",
"1",
],
"skipFiles": [
"${workspaceRoot}/../../node_modules/**/*",
"<node_internals>/**/*"
]
}
]
}

"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "TEST",
"program": "${workspaceRoot}/node_modules/jest/bin/jest.js",
"args": ["--colors", "--workerThreads", "--maxWorkers", "1"],
"skipFiles": [
"${workspaceRoot}/../../node_modules/**/*",
"<node_internals>/**/*"
]
}
]
}
Loading

0 comments on commit 468e590

Please sign in to comment.