From 927b1b10886f4fa1d815ab9b3a2351da9d472e3c Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Fri, 5 Feb 2016 19:21:54 -0600 Subject: [PATCH] chore(): update tsconfig --- tsconfig.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 48e0404a3..30a693c84 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,13 +5,16 @@ "noImplicitAny": false, "rootDir": ".", "sourceMap": true, - "declaration": true + "declaration": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true }, "exclude": [ "node_modules" ], "files": [ - "src/index.ts" + "src/index.ts", + "typings/es6-shim/es6-shim.d.ts" ], "compileOnSave": false, "buildOnSave": false,