We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import foo from "mod.js" import * as foo from "mod.js"
import '/modules/my-module.js'; import 'http:example.com\pears.js';
const foo = require("./module"); ... ; <foo.component />;
const foo = require("./module")(); const foo = require("./module").method(arg);
AwaitExpression
const foo = await import("./module")
Promise.resolve()
const foo = Promise.resolve(import("./module"))
.then()
import("./module").then(mod => mod.loadPage())
import(`/modules/module-${index}.js`)
.getJSXChildren()
.getJSXProps()
.checkForRedux()
CallExpression
ArrowFunctionExpression
const foo = React.lazy(() => import('./module'));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1. Parser
A. Expand Import Statement support
a) Static Imports
b) Require Statements
c) Dynamic imports
AwaitExpression
Promise.resolve()
.then()
chainsB. Implement Export Statement parser
C. Support Barrel files
D. Support more path types
E. Increase Babel type guard coverage
.getJSXChildren()
,.getJSXProps()
,.checkForRedux()
methodsCallExpression
inArrowFunctionExpression
body.2. Tree
The text was updated successfully, but these errors were encountered: