From d2e3df4965abcceae5d441d5f91276ffe0823f18 Mon Sep 17 00:00:00 2001 From: sophiadrewfs Date: Tue, 12 Oct 2021 12:43:10 -0500 Subject: [PATCH] Add basic settings --- package.json | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c570284..60dcb47 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,31 @@ "command": "mind-reader.helloWorld", "title": "Hello World" } - ] + ], + "configuration":{ + "title": "Mind_Reader", + "properties": { + "mindReader.productType":{ + "type":"string", + "default": "MINDSTORMS® EV3", + "enum": ["MINDSTORMS® EV3", "SPIKE™ Prime"], + "enumDescriptions": [ + "LEGO® MINDSTORMS® EV3 (31313)", + "LEGO® Education SPIKE™ Prime Set (45678)" + ] + }, + "mindReader.screenReader":{ + "type":"string", + "default": "NVDA", + "enum": ["NVDA", "JAWS", "VoiceOver"], + "enumDescriptions": [ + "NonVisual Desktop Access", + "Job Access With Speech", + "Voice Over" + ] + } + } + } }, "scripts": { "vscode:prepublish": "npm run compile",