From b2068ceb5eefe6ef57639b80b14b10a1df243344 Mon Sep 17 00:00:00 2001 From: "GT, Shreya" Date: Mon, 22 Apr 2024 11:51:04 +0530 Subject: [PATCH] TSP-436 Remove debugger related code from package.json file --- package.json | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) diff --git a/package.json b/package.json index 7ab3c1c..f0800d3 100644 --- a/package.json +++ b/package.json @@ -36,11 +36,6 @@ "license": "Apache-2.0", "main": "./out/extension.js", "contributes": { - "breakpoints": [ - { - "language": "lua" - } - ], "commands": [ { "command": "tsp.openTerminal", @@ -289,49 +284,6 @@ } ] }, - "debuggers": [ - { - "type": "tspdebug", - "languages": [ - "tsp" - ], - "label": "Tsp Debug", - "program": "./out/extension.js", - "runtime": "node", - "configurationAttributes": { - "launch": { - "required": [ - "program" - ], - "properties": { - "program": { - "type": "string", - "description": "Absolute path to a text file.", - "default": "${workspaceFolder}/tspScript.tsp" - }, - "stopOnEntry": { - "type": "boolean", - "description": "Automatically stop after launch.", - "default": false - }, - "trace": { - "type": "boolean", - "description": "Enable logging the Debug Adapter Protocol" - } - } - } - }, - "initialConfigurations": [ - { - "type": "tspdebug", - "request": "launch", - "name": "Debug TSP File", - "program": "${workspaceFolder}/tspScript.tsp", - "stopOnEntry": false - } - ] - } - ], "submenus": [ { "label": "Module",