Tag: tsc

找不到Typescript编译器:命令“tsc”无效

刚刚安装了VS2012的Typescript扩展,然后安装了Visual Studio 2012的TypeScript ,然后教程来调用编译器: > tsc greeter.ts 但是,当我尝试编译.ts文件,我应该input: tsc greeter.ts ? 尝试在VS命令行和在Windows控制台,总是得到消息,TSC不被识别为命令( Command "tsc" is not valid. )。

TypeScript – 如何保持编译的文件在一个单独的目录?

我是相当新的TypeScript,现在我有几个地方的.ts文件通过我的项目结构: app/ |-scripts/ |-app.ts | |-classes/ | |-classA.ts | |-classB.ts | |-controllers/ | |-controllerA.ts | |-controllerB.ts | |-otherStuff/ |-otherstuffA.ts 现在,当我的文件被编译时,它们被编译到.ts文件所在的目录中: app/ |-scripts/ |-app.ts |-app.js | |-classes/ | |-classA.ts | |-classB.ts | |-classA.js | |-classB.js | |-controllers/ | |-controllerA.ts | |-controllerB.ts | |-controllerA.js | |-controllerB.js | |-otherStuff/ |-otherstuffA.ts |-otherStuffA.js 虽然我喜欢.js文件与.ts文件保持相同的目录结构,但我不想追踪我的VCS中的.js文件,所以我想保留所有的JavaScript文件单独的目录树(我可以添加到.gitignore),如下所示: app/ |-scripts/ | |-app.ts | | […]

如何从现有的JavaScript库生成一个.d.ts“typings”定义文件?

我使用了很多库,包括我自己的和第三方的。 我看到“打字”目录包含一些Jquery和WinRT …但他们是如何创build的?