{ // 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": "Grunt - compile:content-en", "skipFiles": [ "/**" ], "program": "${env:APPDATA}\\npm\\node_modules\\grunt\\bin\\grunt", "cwd": "${workspaceRoot}", "args": [ "compile:content-en", "--verbose=false", "--cache=false", "--logLevel=trace", "--stack" ] , "outFiles": [ "${workspaceFolder}/**/*.js" ], "resolveSourceMapLocations": [ "${workspaceFolder}/**", "!**/node_modules/**" ], "outputCapture": "std" }, { "type": "node", "request": "launch", "name": "Grunt - Help", "skipFiles": [ "/**" ], "program": "${env:APPDATA}\\npm\\node_modules\\grunt\\bin\\grunt", "cwd": "${workspaceRoot}", "args": [ "--help", "--verbose=false", "--cache=true", "--logLevel=info", "--stack" ], "outFiles": [ "${workspaceFolder}/**/*.js" ], "resolveSourceMapLocations": [ "${workspaceFolder}/**", "!**/node_modules/**" ], "outputCapture": "std" }, { "type": "node", "request": "launch", "name": "Grunt - Compile Products: Katbot : DE", "skipFiles": [ "/**" ], "program": "${env:APPDATA}\\npm\\node_modules\\grunt\\bin\\grunt", "cwd": "${workspaceRoot}", "args": [ "content-de-katbot-pro-mega-beta", "--verbose=false", "--logLevel=debug", "--stack" ], "outFiles": [ "${workspaceFolder}/**/*.js" ], "resolveSourceMapLocations": [ "${workspaceFolder}/**", "!**/node_modules/**" ], "outputCapture": "std" }, { "type": "node", "request": "launch", "name": "Grunt - Compile Products : Product - EN", "skipFiles": [ "/**" ], "program": "${env:APPDATA}\\npm\\node_modules\\grunt\\bin\\grunt", "cwd": "${workspaceRoot}", "args": [ "compile:content-en-lydia-v4.5", "--content-de-katbot-pro-mega-beta", "--convertProductMedia=true", "--verbose=false", "--logLevel=debug", "--stack" ], "outFiles": [ "${workspaceFolder}/**/*.js" ], "resolveSourceMapLocations": [ "${workspaceFolder}/**", "!**/node_modules/**" ], "outputCapture": "std" }, { "type": "node", "request": "launch", "name": "Grunt - Performance Profile", "skipFiles": [ "/**" ], "program": "${env:APPDATA}\\npm\\node_modules\\grunt\\bin\\grunt", "cwd": "${workspaceRoot}", "args": [ "--help", "--verbose=false", "--debug=true" ], "outFiles": [ "${workspaceFolder}/**/*.js" ], "resolveSourceMapLocations": [ "${workspaceFolder}/**", "!**/node_modules/**" ], "outputCapture": "std" } ] }