Revision 42599451288be5f523365ed8e8e38c02080a6d95 authored by Andrew Scott on 19 May 2021, 18:12:30 UTC, committed by GitHub on 19 May 2021, 18:12:30 UTC
1 parent 93b1e53
Raw File
recommended-launch.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": "Attach to bazel test ... --config=debug",
      "type": "node",
      "request": "attach",
      "port": 9229,
      "address": "localhost",
      "restart": false,
      "sourceMaps": true,
      "localRoot": "${workspaceRoot}",
      "remoteRoot": "${workspaceRoot}",
      "stopOnEntry": false,
      "timeout": 600000,
      "outFiles": ["${workspaceFolder}/bazel-out/**/angular/**/*.js"],
    },
    {
      "name": "Attach to bazel test ... --config=debug (no source maps)",
      "type": "node",
      "request": "attach",
      "port": 9229,
      "address": "localhost",
      "restart": false,
      "sourceMaps": false,
      "localRoot": "${workspaceRoot}",
      "remoteRoot": "${workspaceRoot}",
      "stopOnEntry": false,
      "timeout": 600000,
      "outFiles": ["${workspaceFolder}/bazel-out/**/angular/**/*.js"],
    },
    {
      "name": "IVY:packages/core/test/acceptance",
      "type": "node",
      "request": "launch",
      "program": "${workspaceFolder}/node_modules/.bin/bazelisk",
      "args": [
        "test",
        "--config=ivy",
        "packages/core/test/acceptance",
        "--config=debug"
      ],
      "port": 9229,
      "address": "localhost",
      "restart": true,
      "sourceMaps": true,
      "timeout": 600000,
      "outFiles": ["${workspaceFolder}/bazel-out/**/angular/**/*.js"],
    },
    {
      "name": "IVY:packages/core/test/render3",
      "type": "node",
      "request": "launch",
      "program": "${workspaceFolder}/node_modules/.bin/bazelisk",
      "args": [
        "test",
        "--config=ivy",
        "packages/core/test/render3",
        "--config=debug"
      ],
      "port": 9229,
      "address": "localhost",
      "restart": true,
      "sourceMaps": true,
      "timeout": 600000,
      "outFiles": ["${workspaceFolder}/bazel-out/**/angular/**/*.js"],
    },
    {
      "name": "IVY:packages/core/test",
      "type": "node",
      "request": "launch",
      "program": "${workspaceFolder}/node_modules/.bin/bazelisk",
      "args": [
        "test",
        "--config=ivy",
        "packages/core/test",
        "--config=debug"
      ],
      "port": 9229,
      "address": "localhost",
      "restart": true,
      "sourceMaps": true,
      "timeout": 600000,
      "outFiles": ["${workspaceFolder}/bazel-out/**/angular/**/*.js"],
    },
  ]
}
back to top