summaryrefslogtreecommitdiff
path: root/gulpfile.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-03-13 00:18:41 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-03-13 00:18:41 +0900
commit320f5fedfb0fe0c6761ba0ba5a4d37b730975f41 (patch)
tree9f5e9b7c081b2d976bb2dd348d74dcfc6c606d4f /gulpfile.ts
parentnpm run watchでサーバーサイドもwatchするように (diff)
downloadsharkey-320f5fedfb0fe0c6761ba0ba5a4d37b730975f41.tar.gz
sharkey-320f5fedfb0fe0c6761ba0ba5a4d37b730975f41.tar.bz2
sharkey-320f5fedfb0fe0c6761ba0ba5a4d37b730975f41.zip
eslintrcとtsconfigを整理
Diffstat (limited to 'gulpfile.ts')
-rw-r--r--gulpfile.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.ts b/gulpfile.ts
index b899d62f99..0717d82086 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -14,7 +14,7 @@ const locales: { [x: string]: any } = require('./locales');
const meta = require('./package.json');
gulp.task('build:ts', () => {
- const tsProject = ts.createProject('./tsconfig.json');
+ const tsProject = ts.createProject('./src/tsconfig.json');
return tsProject
.src()