{
  // 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": "debug build",
      "sourceMaps": false,
      "program": "${workspaceFolder}/scripts/build/packing.js",
      "args": ["chart"]
    },
    {
      "type": "node",
      "request": "launch",
      "name": "site generate",
      "runtimeArgs": ["-r", "ts-node/register"],
      "cwd": "${workspaceRoot}",
      "protocol": "inspector",
      "internalConsoleOptions": "openOnSessionStart",
      "args": ["${workspaceFolder}/scripts/site/generate.ts", "table"]
    },
    {
      "type": "node",
      "request": "launch",
      "name": "schematics test",
      "runtimeArgs": ["-r", "ts-node/register"],
      "cwd": "${workspaceRoot}",
      "protocol": "inspector",
      "sourceMaps": true,
      "internalConsoleOptions": "openOnSessionStart",
      "env": {
        "TS_NODE_PROJECT": "${workspaceFolder}/packages/schematics/tsconfig.json"
      },
      "args": ["${workspaceFolder}/packages/schematics/test.ts"]
    }
  ]
}
