diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-05-27 16:44:49 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-05-27 16:44:49 +0200 |
commit | c9f5ac8e763eda19aa0564179300cfff76785435 (patch) | |
tree | 677a00714ec805c116317b37773a511ac4f35172 | |
parent | 01c58e812e1faae6aacfd2a44ab8de344a3b466e (diff) |
put ts output into build directory
-rw-r--r-- | gulpfile.js | 1 | ||||
-rw-r--r-- | tsconfig.json | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js index d21af0561..3141684ab 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -111,6 +111,7 @@ const tsBaseArgs = { noImplicitReturns: true, noFallthroughCasesInSwitch: true, strict: true, + outDir: "build/src/", noImplicitAny: true, }; diff --git a/tsconfig.json b/tsconfig.json index a97c8f2b6..7409f2b81 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,6 +13,7 @@ "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "strict": true, + "outDir": "build/src/", "noImplicitAny": true }, "files": [ |