Referencing TypeScript file includes whole file in output

后端 未结 2 1721
天涯浪人
天涯浪人 2020-12-07 03:05

I have created a new Windows 8 JavaScript Blank app with TypeScript 0.8.1 and Web Essentials installed.

I have added both a file foo.ts and bar.ts

相关标签:
2条回答
  • 2020-12-07 03:40

    I do indeed use the -out parameter to control the compiler's file placements. I've just released the fix to this location for testing: http://madskristensen.net/custom/webessentials2012.vsix

    Please try it out and tell me if it worked. Thanks!

    0 讨论(0)
  • 2020-12-07 04:03

    Normally this would only happen if you supplied an --out flag to the compiler:

    tsc --out bar.js foo.ts bar.ts
    

    Does this happen on save, or on build? If it happens on save, it is something to do with Web Essentials whereas if it happens on build you should check the source of your project file to see if has an --out flag.

    0 讨论(0)
提交回复
热议问题