We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd88908 commit 57e56f1Copy full SHA for 57e56f1
.vscode/launch.json
@@ -7,7 +7,8 @@
7
"name": "Debug Styled Plugin",
8
"skipFiles": ["<node_internals>/**"],
9
"outFiles": ["${workspaceFolder}/lib/**/*.js"],
10
- "port": 9229
+ "port": 9229,
11
+ "preLaunchTask": "npm: watch:compile"
12
}
13
]
14
.vscode/tasks.json
@@ -7,8 +7,16 @@
"type": "npm",
"script": "watch:compile",
"problemMatcher": [
- "$tsc-watch"
- ]
+ {
+ "base": "$tsc-watch",
+ "background": {
+ "activeOnStart": true,
+ "beginsPattern": "Starting compilation in watch mode",
15
+ "endsPattern": "Watching\\sfor\\sfile\\schanges\\."
16
+ }
17
18
+ ],
19
+ "isBackground": true
20
21
-}
22
+}
0 commit comments