不久前我注意到,每当我尝试启动我的应用程序时,我都会收到大量Cannot find name 'require'
和Cannot find type definition file for 'node'
以及Cannot find type definition for 'react-router'
我已经尝试过的一些解决方案是:
1)在我的tsconfig.json中添加一个types: ["node"]
,正如大家在下面看到的那样。
2)在我的package.json中添加@types/node
,大家都可以在这里看到。
3)删除node_modules并重新yarn
,但无济于事。我还删除了yarn.lock,问题仍然存在。
4)添加typeRoots: ["node_modules/@types/node"]
,似乎并没有太大作用。
// Package.json
"devDependencies": {
"@types/lodash": "^4.14.110",
"@types/node": "^10.12.18",
"@types/react": "16.3.12",
"@types/react-dom": "15.5.0",
"@types/react-router": "4.0.11",
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"css-loader": "1.0.0",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"html-webpack-plugin": "2.24.1",
"react": "15.5.4",
"react-dom": "15.5.4",
"react-router-dom": "4.1.1",
"rimraf": "2.6.2",
"style-loader": "0.22.1",
"ts-loader": "1.2.1",
"typescript": "3.2.2",
"url-loader": "1.0.1",
"webpack": "2.2.0",
"webpack-dev-server": "1.16.2"
}
//tsconfig.json (at root level)
{
"compilerOptions": {
"baseUrl": "./",
"target": "es2016",
"pretty": true,
"module": "commonjs",
"sourceMap": true,
"jsx": "preserve",
"outDir": "./dist/",
"noImplicitAny": false,
"preserveConstEnums": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"types": ["node"],
"paths": {
"*": ["node_modules/@types/*", "*"]
}
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}
上面的tsconfig和package.json组合产生以下错误:
ERROR in ./src/index.tsx
(5,1): error TS2580: Cannot find name 'require'. Do you need to install type definitions for node? Try `npm i @types/node` and then add `node` to the types field in your tsconfig.
ERROR in /Users/johnli/Documents/portfolio/tsconfig.json
error TS2688: Cannot find type definition file for 'node'.
我注意到一些奇怪的行为,即添加types: ["node"]
会擦除我的Cannot find type definition file for 'react-router'
,但不会擦除node
。添加react-router
会为node
和react-router
产生错误,而完全删除types
属性也会为node
和react-router
产生错误
我想避免使用declare var require: any
作为解决方案,因为这不能解决问题的核心和更多补丁。
更多有用的信息:节点版本为11.6.0
,纱线版本为1.13.0
还有其他建议可以使它正常工作吗?除了我上面尝试过的解决方案外,我似乎找不到其他解决方案。如果需要,我还可以提供更多信息。谢谢大家!
答案 0 :(得分:0)
尝试
LastRow Offset (1)
并在tsconfig文件中添加:-
npm install @types/node --save-dev
}
答案 1 :(得分:0)
我设法解决了这个问题
我正在使用非常老的Webpack版本控制;升级到webpack 4,将ts-loader升级到v5,并在升级其他webpack插件后,能够解决此编译问题。
让我想起的可能是webpack的一件事是VSCode能够很好地看到节点的键入,但是旧的webpack编译仍会显示这些错误。