The package makes references to seedrandom types in the compiled artifact without it being a dependency (its only a devDep).
$ tsc --noEmit --jsx react && tsc --noEmit --jsx react -p playwright
node_modules/bloom-filters/dist/base-filter.d.ts:1:34 - error TS7016: Could not find a declaration file for module 'seedrandom'. '/Users/t3chguy/WebstormProjects/element-web/node_modules/seedrandom/index.js' implicitly has an 'any' type.
Try `npm i --save-dev @types/seedrandom` if it exists or add a new declaration (.d.ts) file containing `declare module 'seedrandom';`
1 import seedrandom, { PRNG } from 'seedrandom';
New version of https://github.com/Callidon/bloom-filters/issues/72
The package makes references to
seedrandom
types in the compiled artifact without it being a dependency (its only a devDep).