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 --- tsconfig.json | 42 ++++++++++++++++++------------------------ 1 file changed, 18 insertions(+), 24 deletions(-) (limited to 'tsconfig.json') 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" + ] } -- cgit v1.2.3-freya