summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2017-02-23 00:54:08 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2017-02-23 00:54:08 +0900
commit314ff6777aafe677366be50caba4cc5921a92bc4 (patch)
tree734e5a5167bff6f31a0fdeceb49745753db515c5 /src
parentMerge pull request #196 from syuilo/greenkeeper/inquirer-3.0.2 (diff)
downloadsharkey-314ff6777aafe677366be50caba4cc5921a92bc4.tar.gz
sharkey-314ff6777aafe677366be50caba4cc5921a92bc4.tar.bz2
sharkey-314ff6777aafe677366be50caba4cc5921a92bc4.zip
Separate tsconfig.json so that ts-node can work with gulpfile.ts
Diffstat (limited to 'src')
-rw-r--r--src/tsconfig.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/tsconfig.json b/src/tsconfig.json
new file mode 100644
index 0000000000..2909810da0
--- /dev/null
+++ b/src/tsconfig.json
@@ -0,0 +1,23 @@
+{
+ "compilerOptions": {
+ "noEmitOnError": false,
+ "noImplicitAny": false,
+ "noImplicitReturns": true,
+ "noUnusedParameters": false,
+ "noUnusedLocals": true,
+ "noFallthroughCasesInSwitch": true,
+ "declaration": false,
+ "sourceMap": false,
+ "target": "es6",
+ "module": "commonjs",
+ "removeComments": false,
+ "noLib": false
+ },
+ "compileOnSave": false,
+ "include": [
+ "./**/*.ts"
+ ],
+ "exclude": [
+ "./web/app/**/*.ts"
+ ]
+}