chore(): handle identifiers in v5 build process

Closes #2652
This commit is contained in:
Ibby Hadeed 2018-08-23 10:15:28 -04:00
parent fe87b68ccc
commit 38b6501612

View File

@ -38,8 +38,8 @@ export function getDecoratorArgs(decorator: any) {
switch (prop.initializer.kind) {
case ts.SyntaxKind.StringLiteral:
case ts.SyntaxKind.Identifier:
val = prop.initializer.text;
// args[prop.name.escapedText] = val;
break;
case ts.SyntaxKind.ArrayLiteralExpression: