From 314ff6777aafe677366be50caba4cc5921a92bc4 Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Thu, 23 Feb 2017 00:54:08 +0900 Subject: Separate tsconfig.json so that ts-node can work with gulpfile.ts --- src/tsconfig.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/tsconfig.json (limited to 'src/tsconfig.json') 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" + ] +} -- cgit v1.2.3-freya