Skip to content

Commit 88a195a

Browse files
committed
Fix PowerShell#14: Supply default launch.json configuration
This change provides a default launch.json configuration for debugging PowerShell scripts.
1 parent f54db85 commit 88a195a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

package.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,15 @@
9494
}
9595
}
9696
}
97-
}
97+
},
98+
"initialConfigurations": [
99+
{
100+
"name": "PowerShell",
101+
"type": "PowerShell",
102+
"request": "launch",
103+
"program": "SET_SCRIPT_FILE_PATH_HERE.ps1"
104+
}
105+
]
98106
}
99107
],
100108
"configuration": {

0 commit comments

Comments
 (0)