forked from mattbierner/vscode-emojisense
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump min VS Code version and update launch json
- Loading branch information
1 parent
f7d2b11
commit 5527c52
Showing
2 changed files
with
24 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,34 @@ | ||
// A launch configuration that compiles the extension and then opens it inside a new window | ||
{ | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch Extension", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ], | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceRoot}" | ||
], | ||
"sourceMaps": true, | ||
"outFiles": [ "${workspaceRoot}/out/src/**/*.js" ], | ||
"preLaunchTask": "watch" | ||
"outFiles": [ | ||
"${workspaceRoot}/dist/**/*.js" | ||
], | ||
"preLaunchTask": "watch", | ||
}, | ||
{ | ||
"name": "Run Web Extension in VS Code", | ||
"type": "pwa-extensionHost", | ||
"debugWebWorkerHost": true, | ||
"request": "launch", | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}", | ||
"--extensionDevelopmentKind=web" | ||
], | ||
"outFiles": [ | ||
"${workspaceFolder}/dist/web/**/*.js" | ||
], | ||
"preLaunchTask": "npm: watch-web" | ||
"name": "Run Web Extension in VS Code", | ||
"type": "extensionHost", | ||
"debugWebWorkerHost": true, | ||
"request": "launch", | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}", | ||
"--extensionDevelopmentKind=web" | ||
], | ||
"outFiles": [ | ||
"${workspaceFolder}/dist/web/**/*.js" | ||
], | ||
"preLaunchTask": "npm: watch-web" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters