TypeScript typings give me “index.d.ts is not a module”

webrtc is part of the browser; you’re trying to import a module. Simply import the (typings) library:

import "webrtc";

you may need to use "moduleResolution": "node" in the compiler options.

Alternatively use the "types": ["webrtc"] compiler option and the compiler will automatically load those types up for you.

Leave a Comment