问题:
ERROR in src/app/home/lottery/lottery.d.ts(1,22): error TS6053: File 'E:/integral_code/integral-mobile-4/node_modules/_@types_node@10.12.18@@types/node/index.d.ts' not found.
[ng] src/app/home/lottery/lottery.d.ts(3,22): error TS2304: Cannot find name 'NodeRequire'.
解决过程:
既然它说找不到文件,那就去node_modules里看看有没有这个文件。发现有,但是是@10.12.19版本的,而文件中是@10.12.18,说明版本号不一致。去package.json文件里发现文件中是这样的,如此,找到了症结所在。
解决方案:
有^说明会安装10.12.18以上、11.0.0以下的版本。为了避免版本不一致的问题,将尖括号去掉,固定版本就好了。
再次运行cnpm install,重新下载一次包就OK了。