我在WebStorm 2016.2.2中将js文件转换为ts。
我有以下代码段:
///<reference path="./typings/globals/node/index.d.ts" />
global.base_dir = __dirname;
global.abs_path = function(path) {
return global.base_dir + path;
};
global.include = function(file) {
return require(global.abs_path('/' + file));
};
base_dir
,abs_path
和include
产生了错误:
TS2339:Property&#39; base_dir&#39;类型&#39; Global&#39;
上不存在TS2339:财产&#39; abs_path&#39;类型&#39; Global&#39;
上不存在TS2339:财产&#39;包括&#39;类型&#39; Global&#39;
上不存在
所以我把它们添加到了全球&#39;界面如下:
///<reference path="./typings/globals/node/index.d.ts" />
declare namespace NodeJS{
interface Global {
base_dir: string;
abs_path: (path: string) => string;
include: (file: string) => string;
}
}
global.base_dir = __dirname;
global.abs_path = function(path) {
return global.base_dir + path;
};
global.include = function(file) {
return require(global.abs_path('/' + file));
};
确实消除了这些错误。
然后,我继续转换文件的其余部分,我必须从快递中导入Request
和Response
,所以我添加了以下内容:
///<reference path="./typings/modules/express/index.d.ts" />
import {Request, Response} from "~express/lib/express";
所以现在整个片段就是这样:
///<reference path="./typings/globals/node/index.d.ts" />
///<reference path="./typings/modules/express/index.d.ts" />
import {Request, Response} from "~express/lib/express";
declare namespace NodeJS{
interface Global {
base_dir: string;
abs_path: (path: string) => string;
include: (file: string) => string;
}
}
global.base_dir = __dirname;
global.abs_path = function(path) {
return global.base_dir + path;
};
global.include = function(file) {
return require(global.abs_path('/' + file));
};
不幸的是,添加import
语句已经返回了TS2339错误,所以我再次陷入困境:
TS2339:Property&#39; base_dir&#39;类型&#39; Global&#39;
上不存在TS2339:财产&#39; abs_path&#39;类型&#39; Global&#39;
上不存在TS2339:财产&#39;包括&#39;类型&#39; Global&#39;
上不存在
BTW Express与此错误无关。我试图从其他模块导入,它产生了同样的错误。当我至少有一个import
语句
有人知道我该怎么办?
任何帮助都将深表感谢!