jsonpath-mapper
Version:
A json to json transformation utility with a few nice features to use when translating for example API responses into a domain object for use in your domain-driven JavaScript applications. Can be used in React applications with the 'useMapper' hook.
26 lines (25 loc) • 633 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": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
// "preLaunchTask": "npm: build",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"test"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}