How can I import Node modules which reside in the node_modules folder in TypeScript?
I get an error message (The name ''async'' does not exist in the current scope) when I try to compile the following piece of TypeScript code:
// Converted from: var async = require('async');
import async = module('async');