File tree Expand file tree Collapse file tree 7 files changed +133
-1
lines changed
Expand file tree Collapse file tree 7 files changed +133
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ log.txt
1010* .sublime-project
1111* .sublime-workspace
1212.idea /
13- .vscode /
13+ / .vscode /
1414npm-debug.log *
1515
1616.sourcemaps /
Original file line number Diff line number Diff line change 1+ {
2+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
3+ "recommendations" : [" angular.ng-template" ]
4+ }
Original file line number Diff line number Diff line change 1+ {
2+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
3+ "version" : " 0.2.0" ,
4+ "configurations" : [
5+ {
6+ "name" : " ng serve" ,
7+ "type" : " chrome" ,
8+ "request" : " launch" ,
9+ "preLaunchTask" : " npm: start" ,
10+ "url" : " http://localhost:4200/"
11+ },
12+ {
13+ "name" : " ng test" ,
14+ "type" : " chrome" ,
15+ "request" : " launch" ,
16+ "preLaunchTask" : " npm: test" ,
17+ "url" : " http://localhost:9876/debug.html"
18+ }
19+ ]
20+ }
Original file line number Diff line number Diff line change 1+ {
2+ // For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
3+ "version" : " 2.0.0" ,
4+ "tasks" : [
5+ {
6+ "type" : " npm" ,
7+ "script" : " start" ,
8+ "isBackground" : true ,
9+ "problemMatcher" : {
10+ "owner" : " typescript" ,
11+ "pattern" : " $tsc" ,
12+ "background" : {
13+ "activeOnStart" : true ,
14+ "beginsPattern" : {
15+ "regexp" : " (.*?)"
16+ },
17+ "endsPattern" : {
18+ "regexp" : " bundle generation complete"
19+ }
20+ }
21+ }
22+ },
23+ {
24+ "type" : " npm" ,
25+ "script" : " test" ,
26+ "isBackground" : true ,
27+ "problemMatcher" : {
28+ "owner" : " typescript" ,
29+ "pattern" : " $tsc" ,
30+ "background" : {
31+ "activeOnStart" : true ,
32+ "beginsPattern" : {
33+ "regexp" : " (.*?)"
34+ },
35+ "endsPattern" : {
36+ "regexp" : " bundle generation complete"
37+ }
38+ }
39+ }
40+ }
41+ ]
42+ }
Original file line number Diff line number Diff line change 1+ {
2+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
3+ "recommendations" : [" angular.ng-template" ]
4+ }
Original file line number Diff line number Diff line change 1+ {
2+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
3+ "version" : " 0.2.0" ,
4+ "configurations" : [
5+ {
6+ "name" : " ng serve" ,
7+ "type" : " chrome" ,
8+ "request" : " launch" ,
9+ "preLaunchTask" : " npm: start" ,
10+ "url" : " http://localhost:4200/"
11+ },
12+ {
13+ "name" : " ng test" ,
14+ "type" : " chrome" ,
15+ "request" : " launch" ,
16+ "preLaunchTask" : " npm: test" ,
17+ "url" : " http://localhost:9876/debug.html"
18+ }
19+ ]
20+ }
Original file line number Diff line number Diff line change 1+ {
2+ // For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
3+ "version" : " 2.0.0" ,
4+ "tasks" : [
5+ {
6+ "type" : " npm" ,
7+ "script" : " start" ,
8+ "isBackground" : true ,
9+ "problemMatcher" : {
10+ "owner" : " typescript" ,
11+ "pattern" : " $tsc" ,
12+ "background" : {
13+ "activeOnStart" : true ,
14+ "beginsPattern" : {
15+ "regexp" : " (.*?)"
16+ },
17+ "endsPattern" : {
18+ "regexp" : " bundle generation complete"
19+ }
20+ }
21+ }
22+ },
23+ {
24+ "type" : " npm" ,
25+ "script" : " test" ,
26+ "isBackground" : true ,
27+ "problemMatcher" : {
28+ "owner" : " typescript" ,
29+ "pattern" : " $tsc" ,
30+ "background" : {
31+ "activeOnStart" : true ,
32+ "beginsPattern" : {
33+ "regexp" : " (.*?)"
34+ },
35+ "endsPattern" : {
36+ "regexp" : " bundle generation complete"
37+ }
38+ }
39+ }
40+ }
41+ ]
42+ }
You can’t perform that action at this time.
0 commit comments