moleculerjs / moleculer-web

:earth_africa: Official API Gateway service for Moleculer framework
http://moleculer.services/docs/moleculer-web.html
MIT License
292 stars 120 forks source link

Typescript error: import { IParseOptions } from 'qs' #345

Open dan2kx opened 10 months ago

dan2kx commented 10 months ago

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