{ // 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": "bookshop", "command": "npx cds watch bookshop", "type": "node-terminal", "request": "launch", "skipFiles": [ "/**", "**/node_modules/**", "**/cds/lib/lazy.js", "**/cds/lib/req/cds-context.js", "**/odata-v4/okra/**" ] }, { "name": "Fiori App", "command": "npx cds watch fiori", "type": "node-terminal", "request": "launch", "skipFiles": [ "/**", "**/node_modules/**", "**/cds/lib/lazy.js", "**/cds/lib/req/cds-context.js", "**/odata-v4/okra/**" ] }, { "name": "Debug Mocha Tests", "type": "node", "request": "attach", "port": 9229, "continueOnAttach": true, "skipFiles": [ "/**", "**/node_modules/**", "**/cds/lib/lazy.js", "**/cds/lib/req/cds-context.js", "**/odata-v4/okra/**", ] }, ], "inputs": [ { "type": "pickString", "id": "sample", "description": "Which sample do you want to start?", "options": [ "bookshop", "fiori", "reviews", "reviews" ], "default": "bookshop" } ] }