diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-03 13:03:37 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-03 13:03:37 +0900 |
| commit | c06f297c478ee0b818ae8ff41e0d2bde18430da3 (patch) | |
| tree | ef59ff22d3324125a817a791fcd2c45e21a3f9f5 /gulpfile.ts | |
| parent | Merge pull request #1379 from akihikodaki/misc (diff) | |
| download | sharkey-c06f297c478ee0b818ae8ff41e0d2bde18430da3.tar.gz sharkey-c06f297c478ee0b818ae8ff41e0d2bde18430da3.tar.bz2 sharkey-c06f297c478ee0b818ae8ff41e0d2bde18430da3.zip | |
Use typescript in tests
Diffstat (limited to 'gulpfile.ts')
| -rw-r--r-- | gulpfile.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index f372ed2993..fe3b040237 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -91,8 +91,8 @@ gulp.src('./src/**/*.ts') gulp.task('mocha', () => gulp.src([]) .pipe(mocha({ - exit: true - //compilers: 'ts:ts-node/register' + exit: true, + compilers: 'ts:ts-node/register' } as any)) ); |