0

我的服务器.ts文件抱怨找不到模块和类型,尽管我安装了模块并检查了node_modules.

这是我的项目结构:截图

我得到的错误:截图

tsconfig.json: _

{
    "compilerOptions": {
        "module": "commonjs",
        "moduleResolution": "node",
        "target": "es5",
        "sourceMap": true,
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "noImplicitAny": false
    },
    "exclude": [
        "node_modules",
    "typings"
    ],
    "filesGlob": [
    "**/*.ts",
    "typings/main",
    "./typings/index.d.ts"
    ]
}
4

1 回答 1

0

filesGlob本机打字稿( github)尚不支持

我的建议是删除 filesGlob 部分,因为看起来您实际上并不需要它,而是:

{ 
    "compilerOptions": {
        "module": "commonjs",
        "moduleResolution": "node",
        "target": "es5",
        "sourceMap": true,
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "noImplicitAny": false
    },
    "exclude": [
        "node_modules",
        "typings/browser.d.ts",
        "typings/browser/**"
    ]
} 

希望这可以帮助。

于 2016-07-17T19:40:58.387 回答