aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorAlexander Kiryukhin <a.kiryukhin@mail.ru>2021-03-22 02:27:33 +0300
committerAlexander Kiryukhin <a.kiryukhin@mail.ru>2021-03-22 02:27:33 +0300
commitff66c26ad4cf74524daa7696a1ec2bcd0bde7d9b (patch)
tree6fd8ebedd25b15389e999b6619bc1f5cc86f68de /.vscode
parent7707ba49f6471478f95a3bd40d9992b051321c7a (diff)
v0.0.2
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/extensions.json8
-rw-r--r--.vscode/launch.json44
-rw-r--r--.vscode/settings.json12
3 files changed, 47 insertions, 17 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
index 12ffc20..3ac9aeb 100644
--- a/.vscode/extensions.json
+++ b/.vscode/extensions.json
@@ -1,5 +1,7 @@
{
- "recommendations": [
- "dbaeumer.vscode-eslint"
- ]
+ // See http://go.microsoft.com/fwlink/?LinkId=827846
+ // for the documentation about the extensions.json format
+ "recommendations": [
+ "dbaeumer.vscode-eslint"
+ ]
}
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 9e6d2e6..670d6e6 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -1,14 +1,34 @@
+// A launch configuration that compiles the extension and then opens it inside a new window
+// 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": "Run Extension",
- "type": "extensionHost",
- "request": "launch",
- "runtimeExecutable": "${execPath}",
- "args": [
- "--extensionDevelopmentPath=${workspaceFolder}"
- ]
- }
- ]
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Run Extension",
+ "type": "extensionHost",
+ "request": "launch",
+ "args": [
+ "--extensionDevelopmentPath=${workspaceFolder}"
+ ],
+ "outFiles": [
+ "${workspaceFolder}/out/**/*.js"
+ ],
+ "preLaunchTask": "${defaultBuildTask}"
+ },
+ {
+ "name": "Extension Tests",
+ "type": "extensionHost",
+ "request": "launch",
+ "args": [
+ "--extensionDevelopmentPath=${workspaceFolder}",
+ "--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
+ ],
+ "outFiles": [
+ "${workspaceFolder}/out/test/**/*.js"
+ ],
+ "preLaunchTask": "${defaultBuildTask}"
+ }
+ ]
}
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 89401d0..30bf8c2 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,3 +1,11 @@
+// Place your settings in this file to overwrite default and user settings.
{
- "editor.insertSpaces": false
-}
+ "files.exclude": {
+ "out": false // set this to true to hide the "out" folder with the compiled JS files
+ },
+ "search.exclude": {
+ "out": true // set this to false to include "out" folder in search results
+ },
+ // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
+ "typescript.tsc.autoDetect": "off"
+} \ No newline at end of file