I'm using Visual Studio 2013 Update 3, and have the latest version of WebEssentials installed. Under my project settings, under the Typescript Build tab, I've set the Module system type to AMD. I have a Typescript file with the following simple code:
export class Test {
}
When I try to build, however, I get the following build error (which also shows up as a red squiggly in my editor): Cannot compile external modules unless the '--module' flag is provided.
I've been searching for an answer to this, but it seems like everything online is for pre 1.0 versions of Typescript, and don't seem to apply to my needs. Has anyone seen this behavior before, and if so, how did you resolve it?
Thanks in advance for any help! :)