diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2019-03-28 16:11:33 +0530 |
---|---|---|
committer | IBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com> | 2019-03-28 16:11:42 +0530 |
commit | 5e7128ed9e587937480f8c85fb3796c90d7dbf01 (patch) | |
tree | 63cb4c4a1aea350326cdf785820cd353c36900cc | |
parent | 837f8493fe6c7cd0569c43105b923e42549dcf7b (diff) |
Added Expirimental decorators support
Set ExpirimentalDecorators to true in tsconfig.json to remove the
decorators errors across the project
Issue-ID: CCSDK-1171
Change-Id: I6a25e0eb02800a3ad19fbf46e957f9683f246746
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
-rw-r--r-- | cds-ui/server/tsconfig.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cds-ui/server/tsconfig.json b/cds-ui/server/tsconfig.json index eb96bb53c..e042793b2 100644 --- a/cds-ui/server/tsconfig.json +++ b/cds-ui/server/tsconfig.json @@ -10,5 +10,8 @@ "node_modules/**", "packages/*/node_modules/**", "**/*.d.ts" - ] + ], + "compilerOptions": { + "experimentalDecorators": true + } } |