我只是将 Web Essentials 和 Typescript 更新到新版本。
结果我的项目不再工作了。
这是我的打字稿代码:
/// <reference path="DefinitelyTyped/jqueryui.d.ts" />
/// <reference path="DefinitelyTyped/jquery-datatable.d.ts" />
import Common = module("Common");
import GMap = module("GMap");
declare var $: JQueryStatic;
export class Polygon extends GMap.Polygon {
在更新我生成的代码(有效)之前是:
var __extends = this.__extends || function (d, b) {
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
};
define(["require", "exports", "GMap", "Common"], function(require, exports, __GMap__, __Common__) {
var GMap = __GMap__;
var Common = __Common__;
var Polygon = (function (_super) {
__extends(Polygon, _super);
function Polygon() {
_super.apply(this, arguments);
}
现在它看起来像:
var __extends = this.__extends || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
};
var Common = require("./Common");
var GMap = require("./GMap");
var Polygon = (function (_super) {
__extends(Polygon, _super);
在我的控制台中,我有这个错误:
未捕获的错误:尚未为上下文加载模块名称“Common”:_。使用要求([])
我尝试在配置中添加 Common。但在更新之前它工作正常。
任何人都可以帮助我,也许需要对我的代码进行一些更改才能让我的项目恢复正常。
谢谢,
杰罗姆
更新
我只是看到这是由于 Web Essentials 2.9,我不再有为 amd 模块指定编译器选项的选项。
我只是删除扩展并重新安装 2.7 版:
http://vswebessentials.com/nightly/webessentials2012-2.7.vsix