From 6fbcbae6195d25210416d90a660c842c846e76f0 Mon Sep 17 00:00:00 2001 From: MantasKosovskis Date: Tue, 9 Jul 2024 09:20:39 +0300 Subject: [PATCH] Create launch.json --- app/.vscode/launch.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 app/.vscode/launch.json diff --git a/app/.vscode/launch.json b/app/.vscode/launch.json new file mode 100644 index 0000000..e17de9a --- /dev/null +++ b/app/.vscode/launch.json @@ -0,0 +1,29 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "SP_DEV cloud sandbox", + "request": "launch", + "type": "al", + "tenant": "a0c6ec6d-94c1-4b6e-a290-73996660e809", + "environmentType": "Sandbox", + "environmentName": "SP_DEV", + "breakOnError": "All", + "launchBrowser": true, + "enableLongRunningSqlStatements": true, + "enableSqlInformationDebugger": true + }, + { + "name": "SP_LS_CENTRAL cloud sandbox", + "request": "launch", + "type": "al", + "tenant": "a0c6ec6d-94c1-4b6e-a290-73996660e809", + "environmentType": "Sandbox", + "environmentName": "SP_LS_CENTRAL", + "breakOnError": "All", + "launchBrowser": true, + "enableLongRunningSqlStatements": true, + "enableSqlInformationDebugger": true + } + ] +}