nuxt/eslint + antfu-eslint-config errors
So I started a fresh nuxt installation using
I have disabled standalone in nuxt config:
eslint.config.mjs:
Now when I'm trying to create an interface like
I get an eslint error saying
Removing
Does anybody know what could be happening here?
pnpx nuxi@latest init added the @nuxt.eslint module alongside @antfu/eslint-config.I have disabled standalone in nuxt config:
eslint.config.mjs:
Now when I'm trying to create an interface like
interface ComponentProps {}I get an eslint error saying
Parsing error: The keyword 'interface' is reservedRemoving
antfu() from my eslint config removes the error, but obviously I'd like to use it. Does anybody know what could be happening here?