diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-02-23 00:54:08 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-02-23 00:54:08 +0900 |
| commit | 314ff6777aafe677366be50caba4cc5921a92bc4 (patch) | |
| tree | 734e5a5167bff6f31a0fdeceb49745753db515c5 /src/tsconfig.json | |
| parent | Merge pull request #196 from syuilo/greenkeeper/inquirer-3.0.2 (diff) | |
| download | sharkey-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/tsconfig.json')
| -rw-r--r-- | src/tsconfig.json | 23 |
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" + ] +} |