With auth

This commit is contained in:
2023-09-26 20:47:53 -07:00
parent 9ee21dbe30
commit 5454183d86
27 changed files with 3061 additions and 83 deletions

20
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,20 @@
// 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",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/type-script-helper"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
]
}
]
}

View File

@ -1,5 +1,6 @@
{
"cSpell.words": [
"Kanban",
"VSIX"
]
}