Created
March 31, 2019 19:49
-
-
Save longlho/42aebf74021676dcc14201cc902f8d3c to your computer and use it in GitHub Desktop.
transformer-p2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const visitor: ts.Visitor = (node: ts.Node): ts.Node => { | |
if (ts.isImportDeclaration(node) && node.moduleSpecifier) { | |
const newNode = ts.getMutableClone(node) // Clone the node | |
} | |
return ts.visitEachChild(node, visitor) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment