Skip to content

Commit 3d3e502

Browse files
committed
Allow ts files for gulp tasks
Fixes microsoft#136418
1 parent 6ef5dbe commit 3d3e502

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/gulp/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class FolderDetector {
179179
for (const filename of await fs.promises.readdir(root)) {
180180

181181
const ext = path.extname(filename);
182-
if (ext !== '.js' && ext !== '.mjs' && ext !== '.cjs') {
182+
if (ext !== '.js' && ext !== '.mjs' && ext !== '.cjs' && ext !== '.ts') {
183183
continue;
184184
}
185185

0 commit comments

Comments
 (0)