Skip to content

Commit

Permalink
chore: fix ts compilation with tsutils import (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
adidahiya authored Jul 24, 2019
1 parent d229c84 commit e8f4d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/jsxCurlyBracePresenceRule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/

import * as Lint from "tslint";
import { isJsxAttribute, isJsxExpression, isStringLiteral, isTextualLiteral } from "tsutils";
import { isJsxAttribute, isJsxExpression, isStringLiteral, isTextualLiteral } from "tsutils/typeguard/3.0";
import * as ts from "typescript";

const OPTION_ALWAYS = "always";
Expand Down

0 comments on commit e8f4d0f

Please sign in to comment.