Closes #27451 --------- Co-authored-by: Leosvel Pérez Espinosa <leosvel.perez.espinosa@gmail.com> Co-authored-by: Jack Hsu <jack.hsu@gmail.com>
17 lines
292 B
TypeScript
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;
|