{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Generate",
            "type": "node",
            "request": "launch",
            "program": "${workspaceRoot}/src/cli.ts",
            "stopOnEntry": false,
            "args": [
                "swagger"
            ],
            "cwd": "${workspaceRoot}",
            "preLaunchTask": "build",
            "runtimeExecutable": null,
            "runtimeArgs": [
                "--nolazy"
            ],
            "env": {
                "NODE_ENV": "development"
            },
            "externalConsole": false,
            "sourceMaps": true,
            "outDir": "${workspaceRoot}/dist"
        }
    ]
}