OpenSAP course officesupplies
This commit is contained in:
4
packages/officesupplies/.vscode/cds.js
vendored
Normal file
4
packages/officesupplies/.vscode/cds.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
// used in launch.json to refer to an installed cds via an absolute path
|
||||
|
||||
const cds = require('@sap/cds');
|
||||
cds.exec();
|
||||
19
packages/officesupplies/.vscode/launch.json
vendored
Normal file
19
packages/officesupplies/.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
// 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": "cds run",
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/.vscode/cds",
|
||||
"args": [ "run", "--with-mocks", "--in-memory?" ],
|
||||
"skipFiles": [ "<node_internals>/**" ],
|
||||
"internalConsoleOptions": "openOnSessionStart",
|
||||
"console": "internalConsole",
|
||||
"autoAttachChildProcesses": true
|
||||
}
|
||||
]
|
||||
}
|
||||
7
packages/officesupplies/.vscode/settings.json
vendored
Normal file
7
packages/officesupplies/.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"files.exclude": {
|
||||
"**/.gitignore": true,
|
||||
"**/.git": true,
|
||||
"**/.vscode": true
|
||||
}
|
||||
}
|
||||
23
packages/officesupplies/.vscode/tasks.json
vendored
Normal file
23
packages/officesupplies/.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "cds watch",
|
||||
"command": ["cds", "watch"],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "cds run",
|
||||
"command": ["cds", "run", "--with-mocks", "--in-memory?"],
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user