Situation:
- tsconfig.json has
strict: truewhich impliesnoImplicitAny: true - want to import and use a module
@garmin/fitsdkwhich does not export types
Solution:
- write d.ts file with
declare module @garmin/fitsdk - put in a location
- the location should be included in tsconfig.json 'include' array
- Important: Set
{ ts-node: { files: true }}in tsconfig.json