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
When using moleculer-web in a typescript project the index.d.ts file is declaring the module and importing
import { IParseOptions } from 'qs';
which causes a typescript compilation error requiring either @types/qs to be added to my project package.json or for me to add skipLibCheck: true to the tsconfig.json file
The text was updated successfully, but these errors were encountered:
When using moleculer-web in a typescript project the index.d.ts file is declaring the module and importing
import { IParseOptions } from 'qs';
which causes a typescript compilation error requiring either @types/qs to be added to my project package.json or for me to add
skipLibCheck: true
to thetsconfig.json
fileThe text was updated successfully, but these errors were encountered: