I'm using VS Code 1.3.0 as an editor and Typescript 2.0. I have a tsconfig.json in my root directory with a files property of
"files":["newfile.ts"] and newfile.ts is in my root directory. I ran
npm i --save lodash
npm i @types/lodash --save and installed the definition files. In my newfile.ts I have
import * as _ from "lodash" and I'm getting a module not found error on lodash. If lodash and its type are installed, why themodule not found` error?
I have restarted my editor multiple times, to no avail.