We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9ca191 commit 6e2dea5Copy full SHA for 6e2dea5
gulpfile.ts
@@ -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