关于cannot find module 'xxxx’的一个可能解决方法。
Posted 于钧华的园子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于cannot find module 'xxxx’的一个可能解决方法。相关的知识,希望对你有一定的参考价值。
--moduleResolution
flag to specify the module resolution strategy. If not specified, the default is Classic for --module AMD | System | ES2015
or Node otherwise.For non-relative module imports, however, the compiler walks up the directory tree starting with the directory containing the importing file, trying to locate a matching definition file.
For example:
A non-relative import to moduleB
such as import { b } from "moduleB"
, in a source file /root/src/folder/A.ts
, would result in attempting the following locations for locating "moduleB"
:
/root/src/folder/moduleB.ts
/root/src/folder/moduleB.d.ts
/root/src/moduleB.ts
/root/src/moduleB.d.ts
/root/moduleB.ts
/root/moduleB.d.ts
/moduleB.ts
/moduleB.d.ts
/root/src/node_modules/moduleB.js
/root/src/node_modules/moduleB/package.json
(if it specifies a"main"
property)/root/src/node_modules/moduleB/index.js
/root/node_modules/moduleB.js
/root/node_modules/moduleB/package.json
(if it specifies a"main"
property)/root/node_modules/moduleB/index.js
/node_modules/moduleB.js
/node_modules/moduleB/package.json
(if it specifies a"main"
property)/node_modules/moduleB/index.js
以上是关于关于cannot find module 'xxxx’的一个可能解决方法。的主要内容,如果未能解决你的问题,请参考以下文章
关于webpack的cannot find module 'webpack/lib/node/NodeTemplatePlugin'报错问题
Cannot find module '@babel/plugin-transform-react-jsx' 和Cannot find module '@babel/core&
Error: Cannot find module 'gulp-sass'