if I import Stats from 'stats-gl' I have TS error:
Could not find a declaration file for module 'stats-gl'. '.../node_modules/stats-gl/dist/main.js' implicitly has an 'any' type.
There are types at '.../node_modules/stats-gl/dist/stats-gl.d.ts', but this result could not be resolved when respecting package.json "exports". The 'stats-gl' library may need to update its package.json or typings.
But If I import Stats from '../../node_modules/stats-gl/lib/main'; its work fine
if I
import Stats from 'stats-gl'
I have TS error:But If I
import Stats from '../../node_modules/stats-gl/lib/main';
its work fine