admin管理员组文章数量:1327843
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
to my project.
foo.ts
contains only a simple class:
class Foo
{ }
bar.ts
contains a reference to foo.ts
and a class bar:
/// <reference path="foo.ts" />
class Bar
{ }
The strange thing is that bar.js
contains both the Bar and Foo class:
var Foo = (function () {
function Foo() { }
return Foo;
})();
var Bar = (function () {
function Bar() { }
return Bar;
})();
What is going wrong? I'm working on a larger project with a shared reference.ts
file. Suddenly all my ts files are piled to each javascript file.
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
to my project.
foo.ts
contains only a simple class:
class Foo
{ }
bar.ts
contains a reference to foo.ts
and a class bar:
/// <reference path="foo.ts" />
class Bar
{ }
The strange thing is that bar.js
contains both the Bar and Foo class:
var Foo = (function () {
function Foo() { }
return Foo;
})();
var Bar = (function () {
function Bar() { }
return Bar;
})();
What is going wrong? I'm working on a larger project with a shared reference.ts
file. Suddenly all my ts files are piled to each javascript file.
2 Answers
Reset to default 6I do indeed use the -out parameter to control the piler's file placements. I've just released the fix to this location for testing: http://madskristensen/custom/webessentials2012.vsix
Please try it out and tell me if it worked. Thanks!
Normally this would only happen if you supplied an --out
flag to the piler:
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.
本文标签: javascriptReferencing TypeScript file includes whole file in outputStack Overflow
版权声明:本文标题:javascript - Referencing TypeScript file includes whole file in output - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742216384a2434641.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论