poly-mech/.vscode/launch.json
2024-08-18 16:34:30 +02:00

133 lines
3.3 KiB
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": [
{
"type": "node",
"request": "launch",
"name": "Grunt - compile:content-en",
"skipFiles": [
"<node_internals>/**"
],
"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": [
"<node_internals>/**"
],
"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": [
"<node_internals>/**"
],
"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": [
"<node_internals>/**"
],
"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": [
"<node_internals>/**"
],
"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"
}
]
}