Could not find a declaration file for module 'module-name'. '/path/to/module-name.js' implicitly has 前言解决办法: 前言 提醒这个说明我们在编译的时候启动了ts编译。禁用掉就好了 解决办法: 在tsconfig.json中加入下面红色标注的一行配置 { "compileOnSave": false, "compilerOptions": { ...... "noImplicitAny": false, } }