Skip to content

Commit

Permalink
chore: proper .vscode folder setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsdev committed Oct 27, 2022
1 parent 72e52af commit 71d53cd
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 66 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
### Tests ###
tests/baselines/local

## Environment ##
.vscode/settings.json
.vscode/launch.json

## Build ##
out
dist
Expand Down
4 changes: 2 additions & 2 deletions .vscode/launch.json → .vscode/launch.template.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/packages/typescript-explorer",
"--extensionTestsPath=${workspaceFolder}/packages/typescript-explorer/out/test/suite/index"
"--extensionDevelopmentPath=${workspaceFolder}/packages/typescript-explorer-vscode",
"--extensionTestsPath=${workspaceFolder}/packages/typescript-explorer-vscode/out/test/suite/index"
],
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
"preLaunchTask": "${defaultBuildTask}"
Expand Down
5 changes: 0 additions & 5 deletions packages/typescript-explorer-vscode/.vscode/extensions.json

This file was deleted.

28 changes: 0 additions & 28 deletions packages/typescript-explorer-vscode/.vscode/launch.json

This file was deleted.

11 changes: 0 additions & 11 deletions packages/typescript-explorer-vscode/.vscode/settings.json

This file was deleted.

20 changes: 0 additions & 20 deletions packages/typescript-explorer-vscode/.vscode/tasks.json

This file was deleted.

2 changes: 2 additions & 0 deletions packages/typescript-explorer-vscode/src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ type CommandInfo = [id: string, handler: CommandHandler]

const normalCommands: CommandInfo[] = []

// TODO: refreshing on config should be done in config.ts, not here...

const typeTreeViewCommands: RefreshableCommandInfo[] = [
[
"typescriptExplorer.typeTree.view.icons.enabled.toggle",
Expand Down

0 comments on commit 71d53cd

Please sign in to comment.