mirror of
https://github.com/strapi/strapi.git
synced 2025-08-03 14:28:40 +00:00

* 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
18 lines
316 B
JavaScript
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'],
|
|
},
|
|
],
|
|
};
|