Files
scrypted/plugins/sendgrid/.vscode/launch.json
Brett Jia 8199dae6e9 sendgrid: initial implementation (#223)
* initial sendgrid implementation

* logging

* treat api key as a password

* re-initialize client properly, indentation fix

* docs
2022-04-15 22:34:35 -07:00

23 lines
766 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": [
{
"name": "Scrypted Debugger",
"address": "${config:scrypted.debugHost}",
"port": 10081,
"request": "attach",
"skipFiles": [
"**/plugin-remote-worker.*",
"<node_internals>/**"
],
"preLaunchTask": "scrypted: deploy+debug",
"sourceMaps": true,
"localRoot": "${workspaceFolder}/out",
"remoteRoot": "/plugin/",
"type": "pwa-node"
}
]
}