我已经克隆了使用@ babel / preset-typescript而不是ts-loader的存储库。
https://github.com/a-tarasyuk/webpack-typescript-babel
然后我添加了lit-element作为依赖项
添加纱线元素
但是,当我导入以下内容
时import {LitElement, html, css, customElement, property} from 'lit-element';
我收到以下错误:
src / index.ts: 5: 62 - error TS2307: Cannot find module 'lit-element'.
我是初学者,我忘记了什么吗?
答案 0 :(得分:2)
遇到此问题时,在ts.config文件中的compileOptions中添加:“ moduleResolution”:“ node”对我有用。