File tree Expand file tree Collapse file tree 3 files changed +45
-1
lines changed Expand file tree Collapse file tree 3 files changed +45
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ nbproject
13
13
# IDEs & Text Editors
14
14
.idea
15
15
.sublime- *
16
- .vscode
16
+ .vscode / settings.json
17
17
.netbeans
18
18
nbproject
19
19
Original file line number Diff line number Diff line change
1
+ {
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
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "type" : " node" ,
9
+ "request" : " launch" ,
10
+ "name" : " Run Mocha" ,
11
+ "program" : " ${workspaceFolder}/node_modules/mocha/bin/_mocha" ,
12
+ "outFiles" : [
13
+ " ${workspaceFolder}/lib/**/*.js"
14
+ ]
15
+ }
16
+ ]
17
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3
+ // for the documentation about the tasks.json format
4
+ "version" : " 2.0.0" ,
5
+ "tasks" : [
6
+ {
7
+ "type" : " npm" ,
8
+ "script" : " build" ,
9
+ "problemMatcher" : [
10
+ " $tsc"
11
+ ],
12
+ "group" : {
13
+ "kind" : " build" ,
14
+ "isDefault" : true
15
+ }
16
+ },
17
+
18
+ {
19
+ "type" : " npm" ,
20
+ "script" : " test" ,
21
+ "group" : {
22
+ "kind" : " test" ,
23
+ "isDefault" : true
24
+ }
25
+ }
26
+ ]
27
+ }
You can’t perform that action at this time.
0 commit comments