Skip to content

Commit 6e2dea5

Browse files
committed
Create basic gulpfile
1 parent a9ca191 commit 6e2dea5

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

gulpfile.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// noinspection JSUnusedGlobalSymbols
2+
3+
import { dest } from 'gulp';
4+
import * as ts from 'gulp-typescript';
5+
6+
const project = ts.createProject('tsconfig.json');
7+
8+
export function compile(): NodeJS.ReadWriteStream {
9+
return project.src().pipe(project()).pipe(dest('build'));
10+
}

0 commit comments

Comments
 (0)