James Henry 68eeb2eeed
feat(linter): create new workspaces with ESLint v9 and typescript-eslint v8 (#27404)
Closes #27451

---------

Co-authored-by: Leosvel Pérez Espinosa <leosvel.perez.espinosa@gmail.com>
Co-authored-by: Jack Hsu <jack.hsu@gmail.com>
2024-09-12 16:02:27 -04:00

17 lines
292 B
TypeScript

import angular from './src/flat-configs/angular';
import angularTemplate from './src/flat-configs/angular-template';
const plugin = {
configs: {
angular,
'angular-template': angularTemplate,
},
rules: {},
};
// ESM
export default plugin;
// CommonJS
module.exports = plugin;