有什么方法可以让visual studio在本地文件的<autosync enabled=true />
文件中使用_references.js
,但是不会删除我个人添加的任何其他外部引用?例如在以下文件中,autosync会删除反应引用:
//_references.js:
/// <autosync enabled="true" />
/// <reference path="build/client.bundle.js" />
/// <reference path="https://facebook.com/react-0.14.0.min.js" />
(您需要勾选工具 - &gt;选项 - &gt;文本编辑器 - &gt; Javascript - &gt; Intellisense - &gt;下载远程参考,以便在没有autosync enabled=true
的情况下工作
我想保持自动同步,但是当我添加或删除脚本时,它总是会删除外部引用。有什么办法可以告诉它不要吗? e.g。
/// <reference doNotAutoSync path="https://facebook.com/react-0.14.0.min.js" />
答案 0 :(得分:0)
将它们添加到另一个文件似乎对我有用:
//_externalRefs.js
/// <reference path="https://facebook.com/react-0.14.0.min.js" />
/// <reference path="https://facebook.com/react-dom-0.14.0.min.js" />
/// <reference path="../node_modules/react-bootstrap/dist/react-bootstrap.js" />