File tree Expand file tree Collapse file tree 4 files changed +66
-0
lines changed
packages/node_modules/overmind-devtools-vscode/.vscode Expand file tree Collapse file tree 4 files changed +66
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ // See http://go.microsoft.com/fwlink/?LinkId=827846
3+ // for the documentation about the extensions.json format
4+ "recommendations" : [" ms-vscode.vscode-typescript-tslint-plugin" ]
5+ }
Original file line number Diff line number Diff line change 1+ // A launch configuration that compiles the extension and then opens it inside a new window
2+ // Use IntelliSense to learn about possible attributes.
3+ // Hover to view descriptions of existing attributes.
4+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+ {
6+ "version" : " 0.2.0" ,
7+ "configurations" : [
8+ {
9+ "name" : " Run Extension" ,
10+ "type" : " extensionHost" ,
11+ "request" : " launch" ,
12+ "runtimeExecutable" : " ${execPath}" ,
13+ "args" : [" --extensionDevelopmentPath=${workspaceFolder}" ],
14+ "outFiles" : [" ${workspaceFolder}/out/**/*.js" ],
15+ "preLaunchTask" : " npm: watch"
16+ },
17+ {
18+ "name" : " Extension Tests" ,
19+ "type" : " extensionHost" ,
20+ "request" : " launch" ,
21+ "runtimeExecutable" : " ${execPath}" ,
22+ "args" : [
23+ " --extensionDevelopmentPath=${workspaceFolder}" ,
24+ " --extensionTestsPath=${workspaceFolder}/out/test"
25+ ],
26+ "outFiles" : [" ${workspaceFolder}/out/test/**/*.js" ],
27+ "preLaunchTask" : " npm: watch"
28+ }
29+ ]
30+ }
Original file line number Diff line number Diff line change 1+ // Place your settings in this file to overwrite default and user settings.
2+ {
3+ "files.exclude" : {
4+ "out" : false // set this to true to hide the "out" folder with the compiled JS files
5+ },
6+ "search.exclude" : {
7+ "out" : true // set this to false to include "out" folder in search results
8+ },
9+ // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
10+ "typescript.tsc.autoDetect" : " off"
11+ }
Original file line number Diff line number Diff line change 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+ "problemMatcher" : " $tsc-watch" ,
10+ "isBackground" : true ,
11+ "presentation" : {
12+ "reveal" : " never"
13+ },
14+ "group" : {
15+ "kind" : " build" ,
16+ "isDefault" : true
17+ }
18+ }
19+ ]
20+ }
You can’t perform that action at this time.
0 commit comments