add debug entrypoint for dtslint-runner

This commit is contained in:
Nathan Shively-Sanders
2023-04-13 09:54:23 -07:00
parent ecac2cc66a
commit 39d5fe7d16

16
.vscode/launch.json vendored
View File

@@ -5,11 +5,17 @@
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"name": "dtslint-runner local all",
"program": "${workspaceFolder}/packages/dtslint-runner/dist/index.js",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
"skipFiles": [
"<node_internals>/**"
],
"args": [
"--path", "../DefinitelyTyped", "--selection", "all", "--localTypeScriptPath", "../../ts/built/local",
],
"type": "node"
},
]
}