You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately @nuxtjs/apollo seems somewhat stale and updates to it are slow. It may need replacing or adjusting in some manner, as most packages have moved to bundler and this one has not.
This culminates in an unfortunately ignored TS issue in ./tests/unit/support/helpers/mount.ts (line 5): Cannot find module '@nuxtjs/apollo/dist/runtime/composables' or its corresponding type declarations. ts(2307), caused because we're attempting to import useApollo from the repository's ./dist/runtime/composables. The code is working, but obviously we don't want to be ignoring TS errors!
The text was updated successfully, but these errors were encountered:
Unfortunately @nuxtjs/apollo seems somewhat stale and updates to it are slow. It may need replacing or adjusting in some manner, as most packages have moved to
bundler
and this one has not.This culminates in an unfortunately ignored TS issue in
./tests/unit/support/helpers/mount.ts
(line 5):Cannot find module '@nuxtjs/apollo/dist/runtime/composables' or its corresponding type declarations. ts(2307)
, caused because we're attempting to importuseApollo
from the repository's./dist/runtime/composables
. The code is working, but obviously we don't want to be ignoring TS errors!The text was updated successfully, but these errors were encountered: