From 99d6baac7e8523e57fd84f258cf75adb83dd532b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?syuilo=E2=AD=90=EF=B8=8F?= Date: Mon, 20 Feb 2017 01:00:00 +0900 Subject: [PATCH] Update tsconfig.json --- tsconfig.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 2fd42733e..a0a2a4e29 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,6 @@ "noUnusedParameters": false, "noUnusedLocals": true, "noFallthroughCasesInSwitch": true, - "experimentalDecorators": true, "declaration": false, "sourceMap": false, "target": "es6", @@ -19,7 +18,9 @@ "compileOnSave": false, "include": [ "./node_modules/typescript/lib/lib.es6.d.ts", - "./src/**/*.ts", - "!./src/web/**/*.ts" + "./src/**/*.ts" + ], + "exclude": [ + "./src/web/**/*.ts" ] }