1

有没有人让 JavaScript 预览窗格可见并在 VS2013 中工作?我在 VS2012 中使用它来学习 TypeScript,但在 VS2013 中它已经消失了。我已经安装了第 2 版 RC 和最新的打字稿,但没有运气。在 VS2012 机器上,无论我做什么,JS 窗格都不会更新。所有这一切都来自更新 TypeScript?

4

2 回答 2

2

You're likely not using the right build of WebEssentials and Visual Studio combination. Confirm that you're using the build for VS 2013 RC2. The preview pane isn't controlled by anything in nuget. Also make sure that you've removed all old versions of Typescript plugins (from the control panel in Windows) as they aren't needed as of RC2.

As listed in the docs: http://vswebessentials.com/features/typescript

The preview pane has been restored. I use it, on multiple computers successfully.

于 2014-05-01T11:09:30.947 回答
0

注意由于语言更新导致的错误:使用上述说明可以轻松恢复预览窗格。但是今天浪费了大量时间的是预览窗格在保存、全部重建或任何其他尝试刷新时都没有更新。甚至 .JS 代码也没有更新。问题是在 TS 中出现了新的错误,因为语言支持的微小变化。他们并没有阻止构建成功完成——没有弹出错误消息,构建成功等。但是当我手动查看错误列表时,它们出现了——TypeScript 本身发生了三个错误。一旦我修复了这些,预览窗格就会再次自动更新,并且 JS 会自动刷新。

在此最新版本之前,TS 中的错误会删除预览窗格中的所有 JS 代码,并在此处显示清晰的错误消息。在这个最新版本中,情况有所不同:在修复 TS 错误之前,预览版不会做任何事情,也不会发生任何变化。

于 2014-05-02T03:21:19.197 回答