diff options
| author | syuilo⭐️ <Syuilotan@yahoo.co.jp> | 2017-02-20 01:00:00 +0900 |
|---|---|---|
| committer | syuilo⭐️ <Syuilotan@yahoo.co.jp> | 2017-02-20 01:00:00 +0900 |
| commit | 99d6baac7e8523e57fd84f258cf75adb83dd532b (patch) | |
| tree | 06f3563958d0e8e9972582ed037225b395a20596 /tsconfig.json | |
| parent | Merge pull request #186 from syuilo/greenkeeper/riot-compiler-3.2.1 (diff) | |
| download | misskey-99d6baac7e8523e57fd84f258cf75adb83dd532b.tar.gz misskey-99d6baac7e8523e57fd84f258cf75adb83dd532b.tar.bz2 misskey-99d6baac7e8523e57fd84f258cf75adb83dd532b.zip | |
Update tsconfig.json
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tsconfig.json b/tsconfig.json index 2fd42733e6..a0a2a4e298 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" ] } |