{
  // 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": "getCells (raw)",
      "skipFiles": [
        "<node_internals>/**"
      ],
      "program": "${workspaceFolder}/test/getCells.js"
    },
    {
      "type": "node-terminal",
      "name": "---",
      "request": "launch"
    },
    {
      "type": "node",
      "request": "launch",
      "name": "XlsxDataParser",
      "skipFiles": [
        "<node_internals>/**"
      ],
      "program": "${workspaceFolder}/test/XlsxDataParser.test.js"
    },
    {
      "type": "node",
      "name": "XlsxDataReader",
      "program": "${workspaceFolder}/test/XlsxDataReader.test.js",
      "request": "launch",
      "skipFiles": [
        "<node_internals>/**"
      ]
    },
    {
      "type": "node",
      "name": "RowAsObjectTransform",
      "program": "${workspaceFolder}/test/RowAsObject.test.js",
      "request": "launch",
      "skipFiles": [
        "<node_internals>/**"
      ]
    },
    {
      "type": "node",
      "name": "RepeatCellTransform",
      "program": "${workspaceFolder}/test/RepeatCell.test.js",
      "request": "launch",
      "skipFiles": [
        "<node_internals>/**"
      ]
    },
    {
      "type": "node",
      "name": "RepeatHeadingTransform",
      "program": "${workspaceFolder}/test/RepeatHeading.test.js",
      "request": "launch",
      "skipFiles": [
        "<node_internals>/**"
      ]
    },
    {
      "type": "node-terminal",
      "name": "--- xdp",
      "request": "launch"
    },
    {
      "type": "node",
      "request": "launch",
      "name": "xdp helloworld json",
      "program": "xlsx-data-parser.js",
      "args": [ ".\\test\\data\\xlsx\\helloworld.xlsx", "--headers=Greating" ],
      "outputCapture": "std",
      "skipFiles": [
        "<node_internals>/**"
      ]
    },
    {
      "type": "node",
      "request": "launch",
      "name": "xdp helloworld csv",
      "program": "xlsx-data-parser.js",
      "args": [ ".\\test\\data\\xlsx\\helloworld.xlsx", "--headers=Greating", "--format=csv" ],
      "outputCapture": "std",
      "skipFiles": [
        "<node_internals>/**"
      ]
    },
    {
      "type": "node",
      "request": "launch",
      "name": "xdp helloworld rows",
      "program": "xlsx-data-parser.js",
      "args": [ ".\\test\\data\\xlsx\\helloworld.xlsx", "--format=rows" ],
      "outputCapture": "std",
      "skipFiles": [
        "<node_internals>/**"
      ]
    },
    {
      "type": "node",
      "request": "launch",
      "name": "xdp RepeatCell",
      "program": "xlsx-data-parser.js",
      "args": [ "--options=.\\test\\RepeatCell.options.jsonc" ],
      "outputCapture": "std",
      "skipFiles": [
        "<node_internals>/**"
      ]
    },
    {
      "type": "node",
      "request": "launch",
      "name": "xdp RepeatHeading",
      "program": "xlsx-data-parser.js",
      "args": [ "--options=.\\test\\RepeatHeading.options.jsonc" ],
      "outputCapture": "std",
      "skipFiles": [
        "<node_internals>/**"
      ]
    }
  ]
}
