Skip to content

Commit fa6fb40

Browse files
committed
chore: remove settings.json
1 parent 47e8633 commit fa6fb40

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

.vscode/launch.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"--extensions-dir=${workspaceRoot}/.",
1212
"--extensionDevelopmentPath=${workspaceRoot}"
1313
],
14-
"stopOnEntry": false,
1514
"sourceMaps": true,
16-
"outFiles": ["${workspaceRoot}/out/src/**/*.js"]
15+
"outFiles": ["${workspaceRoot}/out/src/**/*.js"],
16+
"preLaunchTask": "${defaultBuildTask}"
1717
},
1818
{
1919
"name": "Launch Tests",
@@ -26,7 +26,6 @@
2626
"--extensionDevelopmentPath=${workspaceRoot}",
2727
"--extensionTestsPath=${workspaceRoot}/out/test"
2828
],
29-
"stopOnEntry": false,
3029
"sourceMaps": true,
3130
"outFiles": ["${workspaceRoot}/out/test/**/*.js"]
3231
}

.vscode/settings.json

-3
This file was deleted.

.vscode/tasks.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// See https://go.microsoft.com/fwlink/?LinkId=733558
2+
// for the documentation about the tasks.json format
3+
{
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"script": "watch",
9+
"isBackground": true,
10+
"presentation": {
11+
"reveal": "never",
12+
"group": "watchers"
13+
},
14+
"group": {
15+
"kind": "build",
16+
"isDefault": true
17+
}
18+
}
19+
]
20+
}

0 commit comments

Comments
 (0)