eslint-codemod-utils
Version:
A collection of AST helper functions for more complex ESLint rule fixes.
12 lines (11 loc) • 536 B
JavaScript
/** constants has to be first so that it resolves the map */
export * from './constants';
export * from './nodes';
export * from './jsx-nodes';
export * from './ts-nodes';
export * from './utils';
export * from './types';
// Re-export the typescript-eslint AST surface so consumers can reach for
// the same AST_NODE_TYPES / AST_TOKEN_TYPES / TSESTree symbols the library
// uses internally without installing `@typescript-eslint/types` themselves.
export { AST_NODE_TYPES, AST_TOKEN_TYPES, TSESTree, } from '@typescript-eslint/types';