|
|
|
|
|
by WorldMaker
3409 days ago
|
|
«Another problem I ran into was using various packages that weren't typed, but I suppose I can solve that by 'allowing' implicitAny.» You can keep noImplicitAny and any-type just specific packages that can't/won't be typed. The declaration is now as simple as: declare module 'path/to/module-name'
Typescript will any type modules that you declare that way. You can also use star (*) and star-star wildcards in the module name. |
|