TS2339:类型上不存在属性

时间:2016-10-16 09:28:04

标签: typescript webstorm

我在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_dirabs_pathinclude产生了错误:

  

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));
};

确实消除了这些错误。

然后,我继续转换文件的其余部分,我必须从快递中导入RequestResponse,所以我添加了以下内容:

///<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语句

时,就会发生这种情况

有人知道我该怎么办?

任何帮助都将深表感谢!

1 个答案:

答案 0 :(得分:5)

问题是任何具有顶级导入或导出的打字稿文件都会成为模块。见https://github.com/Microsoft/TypeScript/issues/1574