web-atoms-core
Version:
28 lines (27 loc) • 898 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": "Launch localhost",
"type": "chrome",
"request": "launch",
"url": "http://http://192.168.0.187:8080/",
"webRoot": "${workspaceFolder}/",
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/node_modules/@web-atoms/unit-test/index.js",
"args": ["./dist/tests"],
"cwd": "${workspaceFolder}",
"protocol": "inspector",
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
]
}
]
}