Skip to content

Commit

Permalink
Fix some annoying VSCode warnings (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwateratmsft committed Jan 31, 2024
1 parent 2b96636 commit 78d9074
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"type": "node",
"request": "launch",
"name": "Mocha All",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
Expand All @@ -28,7 +28,7 @@
}
},
{
"type": "pwa-node",
"type": "node",
"request": "launch",
"name": "Mocha Unit Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
Expand Down Expand Up @@ -73,7 +73,7 @@
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node",
"type": "node",
"timeout": 20000,
"presentation": {
"group": "Live testing",
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"files.insertFinalNewline": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
"source.fixAll": "explicit"
},
"typescript.preferences.importModuleSpecifier": "relative",
"git.branchProtection": [
Expand Down

0 comments on commit 78d9074

Please sign in to comment.