TS2339:类型上不存在属性

Alo*_*lon 2 webstorm typescript

我在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));
};
Run Code Online (Sandbox Code Playgroud)

base_dir,abs_pathinclude产生错误:

TS2339:"全局"类型中不存在属性"base_dir"

TS2339:"全局"类型中不存在属性'abs_path'

TS2339:"全球"类型中不存在"包含"属性

所以我将它们添加到'Global'界面如下:

///<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));
};
Run Code Online (Sandbox Code Playgroud)

它确实消除了这些错误.

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

///<reference path="./typings/modules/express/index.d.ts" />

import {Request, Response} from "~express/lib/express";
Run Code Online (Sandbox Code Playgroud)

所以现在整个片段是这样的:

///<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));
};
Run Code Online (Sandbox Code Playgroud)

不幸的是,添加import语句已经返回TS2339错误,所以我再次卡住:

TS2339:"全局"类型中不存在属性"base_dir"

TS2339:"全局"类型中不存在属性'abs_path'

TS2339:"全球"类型中不存在"包含"属性

BTW Express与此错误无关.我试图从其他模块导入,它产生了同样的错误.它发生在我至少有一个import语句时

有人知道我该如何解决它?

任何帮助将深表感谢!

len*_*ena 5

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