我的服务器.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"
]
}