I’m assuming that `generateExternals` is the task ...
# javascript
h
I’m assuming that
generateExternals
is the task that calls Dukat and generates code for the TypeScript definitions? I’m having problems debugging it. The task completes successfully, but no code is generated for the NPM package I’ve included (lit-element).
s
This is a bug. There is
"typings": "lit-element.d.ts"
in
lit-element/package.json
, but currently we are searching for
types
key only. According to https://www.typescriptlang.org/docs/handbook/declaration-files/publishing.html,
typings
should be supported too. Please fill an issue in youtrack
h
👍
Thanks!