strapi/packages/core/admin/.eslintrc.js
Josh 7016a1b045
chore: initialise ts admin (#18282)
* chore: initialise ts admin

* chore: set JSX to automatic

finally found it

* chore: set DTS true for the whole workflow to produce types for the helper-plugin

* chore(helper-plugin): fix the circular dependencies and calls for react
2023-10-05 08:39:49 +01:00

18 lines
316 B
JavaScript

module.exports = {
root: true,
overrides: [
{
files: ['ee/admin/**/*'],
extends: ['custom/front'],
rules: {
'import/extensions': 'off',
},
},
{
files: ['**/*'],
excludedFiles: ['admin/**/*', 'ee/admin/**/*'],
extends: ['custom/back'],
},
],
};