ts中引入path模块出错
Cannot find module 'path' or its corresponding type declarations.
解决方法
第一步
npm install -D @types/node
第二步
在tsconfig.json中添加
"compilerOptions": {
"types": [
"node"
]
}
第三步
关闭vsCode,重新打开
标签:corresponding,..,ts,module,find,Cannot,path,type,its From: https://www.cnblogs.com/BULE-bule/p/16805551.html