type-check-utility
Version:
Simple utility for type check.
31 lines (30 loc) • 1 kB
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": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
},
{
"name": "Debug Jest Tests",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--inspect",
"${workspaceRoot}/node_modules/.bin/jest",
"--runInBand",
"--coverage",
"false",
"jest-environment-node-debug"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}