Всем привет, может быть кто-то сталкивался с такой ошибкой?
1. Инициализирую проект по документации:
npx nuxi@latest init <project-name>
2. в файле "nuxt.config.ts" появляются следующие настройки:
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
})
3. Когда пытаюсь добавить новый объект app, то в webstorm появляется следующая ошибка:
TS2345: Argument of type '{ devtools: { enabled: boolean; }; app: {}; }' is not assignable to parameter of type 'InputConfig'. Object literal may only specify known properties, and 'app' does not exist in type 'InputConfig'.
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
app: {},
})
Если открыть проект через visual studio code, то ошибок нет