Version: latest (v8.0.1)
When I run ESLint on the generated type definition files, I encounter an error due to the import/group-exports rule. Is there an option to generate the files in a way that would pass this rule, as shown below?
declare const text: string;
declare const textHighlighted: string;
export { text, textHighlighted }
Or, is disabling the lint rule or manually fixing the issue the only solution for now?
Thank you in advance for your help.
Version: latest (v8.0.1)
When I run ESLint on the generated type definition files, I encounter an error due to the import/group-exports rule. Is there an option to generate the files in a way that would pass this rule, as shown below?
Or, is disabling the lint rule or manually fixing the issue the only solution for now?
Thank you in advance for your help.