Skip to content

Commit

Permalink
Added gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
cvs0 committed Sep 13, 2024
1 parent a31248b commit 2e96ca5
Show file tree
Hide file tree
Showing 4 changed files with 2,369 additions and 83 deletions.
11 changes: 11 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const { src, dest, series } = require('gulp');
const ts = require('gulp-typescript');
const tsProject = ts.createProject('tsconfig.json');

function build() {
return tsProject.src()
.pipe(tsProject())
.pipe(dest('dist'));
}

exports.default = series(build);
Loading

0 comments on commit 2e96ca5

Please sign in to comment.