summaryrefslogtreecommitdiff
path: root/tsconfig.json
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 /tsconfig.json
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 'tsconfig.json')
-rw-r--r--tsconfig.json42
1 files changed, 18 insertions, 24 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 24925687a6..515d1847b0 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,26 +1,20 @@
{
- "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,
- "outDir": "built",
- "rootDir": "src"
- },
- "compileOnSave": false,
- "include": [
- "./node_modules/typescript/lib/lib.es6.d.ts",
- "./src/**/*.ts"
- ],
- "exclude": [
- "./src/web/app/**/*.ts"
- ]
+ "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": [
+ "./gulpfile.ts"
+ ]
}