@singularsystems/neo-core
v1.1.1
Published
Core functionality for the Neo client library
Downloads
989
Keywords
Readme
neo-core
This project contains the core functionality of the neo client library.
Building
Run yarn dlx @yarnpkg/sdks vscode
to enable typescript for yarn in vscode.
Testing
To debug the tests, you need to add the following to .vscode\launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "debug tests",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "yarn",
"runtimeArgs": ["run", "--inspect-brk", "test"],
"args": ["${fileBasename}"],
"stopOnEntry": true,
"console": "integratedTerminal",
}
]
}