Closed
Description
The readme suggest this:
import Immutable = require('./node_modules/immutable/dist/Immutable');
However, npm doesn't guarantee that the module is at that location (as it doesn't make any guarantees to the relative location of the dependency).
The correct syntax would be
import Immutable = require('immutable');
This assumes that the compiler is provided with the ambient external declaration file.
Metadata
Metadata
Assignees
Labels
No labels