We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37969d8 commit d45e8a0Copy full SHA for d45e8a0
.gitignore
@@ -10,7 +10,6 @@ jasmine-config/**/*.js.map
10
# IDEs
11
.idea/
12
jsconfig.json
13
-.vscode/
14
.history
15
16
# Misc
.vscode/launch.json
@@ -0,0 +1,17 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "type": "node",
6
+ "request": "launch",
7
+ "name": "Test",
8
+ "program": "${workspaceFolder}/node_modules/jasmine/bin/jasmine.js",
9
+ "args": [
+ "--config=jasmine-config/jasmine.json"
+ ],
+ "outFiles": [
+ "${workspaceFolder}/**/*.js"
+ ]
+ }
17
+}
0 commit comments