diff --git a/src/angular/index.ts b/src/angular/index.ts new file mode 100644 index 000000000..4339e8ae8 --- /dev/null +++ b/src/angular/index.ts @@ -0,0 +1,7 @@ +export * from './templates/basicTemplateAstVisitor'; + +export * from './styles/basicCssAstVisitor'; + +export * from './config'; +export * from './metadata'; +export * from './ngWalker'; diff --git a/src/index.ts b/src/index.ts index 730bbd3a7..e4b31362e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -37,7 +37,7 @@ export { Rule as UsePipeDecoratorRule } from './usePipeDecoratorRule'; export { Rule as UsePipeTransformInterfaceRule } from './usePipeTransformInterfaceRule'; export { Rule as UseViewEncapsulationRule } from './useViewEncapsulationRule'; -export * from './angular/config'; +export * from './angular'; // this file exists for tslint to resolve the rules directory export const rulesDirectory = '.';