Extensibility Walkthrough in capire (#405)

* Extension project template

* SalesRegion ->  x_SalesRegion

* enhanced order repo

* updated package-lock.json
This commit is contained in:
Daniel Hutzel
2022-10-04 12:05:57 +02:00
committed by GitHub
parent bd0f514026
commit 608e16090c
13 changed files with 959 additions and 30 deletions

15
orders-ext/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
// 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": [
{
"command": "cds run --with-mocks --in-memory?",
"name": "cds run",
"request": "launch",
"type": "node-terminal",
"skipFiles": [ "<node_internals>/**" ]
}
]
}