After setting up a new Angular/Typescript project in Atom with atom-typescript, I encountered an issue. The main angular module file imports all modules and type definition files, but errors are now showing in my .ts files. This is due to atom-typescript not recognizing the typings.
For example:
Module 'ng' has no exported member 'IScope' at line 1 col 32
To resolve this, I could individually add reference paths to each ts file like
/// <reference path="../../.tmp/typings/tsd.d.ts" />
, but that seems inefficient.
Since the errors are from atom-typescript, is there a way to specify the location of type defintion files in the project settings? Any other suggestions on how to address this?