diff --git a/.vscode/launch.json b/.vscode/launch.json index 2c5f894..e7b3994 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,35 +3,34 @@ // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 { - "version": "0.2.0", - "configurations": [{ - "name": "Extension", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": [ - "--extensionDevelopmentPath=${workspaceFolder}" - ], - "outFiles": [ - "${workspaceFolder}/out/src/*.js" - ], - "preLaunchTask": "npm: compile" - }, - { - "name": "Extension Tests", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": [ - "--disable-extensions", - "--extensionDevelopmentPath=${workspaceFolder}", - "--extensionTestsPath=${workspaceFolder}/out/test" - ], - "outFiles": [ - "${workspaceFolder}/out/test/**/*.js" - ], - // Will compile the source each time running the test - "preLaunchTask": "npm: compile" - } - ] + "version": "0.2.0", + "configurations": [ + { + "name": "Run Extension", + "type": "extensionHost", + "request": "launch", + "runtimeExecutable": "${execPath}", + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}" + ], + "outFiles": [ + "${workspaceFolder}/out/**/*.js" + ], + "preLaunchTask": "${defaultBuildTask}" + }, + { + "name": "Extension Tests", + "type": "extensionHost", + "request": "launch", + "runtimeExecutable": "${execPath}", + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}", + "--extensionTestsPath=${workspaceFolder}/out/test/suite/index" + ], + "outFiles": [ + "${workspaceFolder}/out/test/**/*.js" + ], + "preLaunchTask": "${defaultBuildTask}" + } + ] } \ No newline at end of file diff --git a/.vscodeignore b/.vscodeignore index 8557178..cdd20ff 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -1,9 +1,9 @@ .vscode/** .vscode-test/** out/test/** -out/**/*.map src/** .gitignore -tsconfig.json -vsc-extension-quickstart.md -tslint.json \ No newline at end of file +**/tsconfig.json +**/.eslintrc.json +**/*.map +**/*.ts