From ed3e283ee9bc66b502fcdc972834086a0cbdd39b Mon Sep 17 00:00:00 2001 From: Kirill Cherkashin Date: Mon, 9 Nov 2015 11:30:55 -0500 Subject: [PATCH] Update tsconfig.json Add ` "experimentalDecorators": true`, to fix `error TS5052: Option 'emitDecoratorMetadata' cannot be specified without specifying option 'experimentalDecorators'.` error --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b3e0712..c2ad1ed 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,8 @@ "noImplicitAny": false, "removeComments": true, "noLib": false, - "emitDecoratorMetadata": true + "emitDecoratorMetadata": true, + "experimentalDecorators": true }, "filesGlob": [ "./**/*.ts",