質問編集履歴

2

a

2016/07/09 09:03

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -42,19 +42,11 @@
42
42
 
43
43
 
44
44
 
45
- var options = {
46
-
47
- //target: "ES5"
48
-
49
- };
50
-
51
-
52
-
53
45
  return gulp.src("./TypeScript/*.ts")
54
46
 
55
47
  .pipe(plumber())
56
48
 
57
- .pipe(typescript(options))
49
+ .pipe(typescript())
58
50
 
59
51
  .on("error", function(error) {
60
52
 
@@ -75,8 +67,6 @@
75
67
 
76
68
 
77
69
  gulp.task("browserify", function() {
78
-
79
-
80
70
 
81
71
 
82
72
 
@@ -120,8 +110,6 @@
120
110
 
121
111
 
122
112
 
123
-
124
-
125
113
  gulp.task("build", function(callback) {
126
114
 
127
115
 

1

/

2016/07/09 09:03

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -110,7 +110,7 @@
110
110
 
111
111
  gulp.task("watch", function() {
112
112
 
113
- return gulp.watch("./Typescript/*.ts", ["build"]);
113
+ gulp.watch("./Typescript/*.ts", ["build"]);
114
114
 
115
115
 
116
116