【发布时间】:2021-04-15 04:54:26
【问题描述】:
我正在尝试运行tsc 来编译我所有的打字稿文件。它曾抱怨无法为 Jquery 找到名称 $。
src/public/js/main.ts:68:15 - error TS2581: Cannot find name '$'. Do you need to install type definitions for jQuery? Try `npm i --save-dev @types/jquery
然后我安装了它告诉我安装的 jquery 类型定义 (yarn add @types/jquery --dev)。我尝试再次运行编译器,它仍然抱怨说它找不到名称$,尽管事实上已经安装了 jquery 类型
package.json https://hastebin.com/segaxiyuyo.json
tsconfig.json https://hastebin.com/culonoluno.json
【问题讨论】:
标签: jquery typescript typescript-typings yarnpkg