diff options
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/extensions.json | 4 | ||||
-rw-r--r-- | .vscode/launch.json | 16 | ||||
-rw-r--r-- | .vscode/settings.json | 11 |
3 files changed, 6 insertions, 25 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 3ac9aeb..0915202 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,7 +1,7 @@ { - // See http://go.microsoft.com/fwlink/?LinkId=827846 + // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the extensions.json format "recommendations": [ "dbaeumer.vscode-eslint" ] -} +}
\ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json index 670d6e6..c774552 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,4 +1,4 @@ -// A launch configuration that compiles the extension and then opens it inside a new window +// A launch configuration that launches the extension 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 @@ -11,11 +11,7 @@ "request": "launch", "args": [ "--extensionDevelopmentPath=${workspaceFolder}" - ], - "outFiles": [ - "${workspaceFolder}/out/**/*.js" - ], - "preLaunchTask": "${defaultBuildTask}" + ] }, { "name": "Extension Tests", @@ -23,12 +19,8 @@ "request": "launch", "args": [ "--extensionDevelopmentPath=${workspaceFolder}", - "--extensionTestsPath=${workspaceFolder}/out/test/suite/index" - ], - "outFiles": [ - "${workspaceFolder}/out/test/**/*.js" - ], - "preLaunchTask": "${defaultBuildTask}" + "--extensionTestsPath=${workspaceFolder}/test/suite/index" + ] } ] } diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 30bf8c2..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,11 +0,0 @@ -// Place your settings in this file to overwrite default and user settings. -{ - "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 |