jspm / generator

JSPM Import Map Generator
Apache License 2.0
166 stars 21 forks source link

generate .d.ts instead of .ts #252

Closed tjx666 closed 1 year ago

tjx666 commented 1 year ago

reproduce:

  1. git clone https://github.com/tjx666/wpm-issue
  2. pnpm install
  3. tsc

image

Bubblyworld commented 1 year ago

Related to #234, these are actual typing issues in the generator (we don't have strict typing enabled, should get on that!).

RyanCavanaugh commented 1 year ago

FYI: this is a critical misconfiguration. The types field cannot point to a .ts file; this is going to effectively break any TypeScript consumer of the package.

Bubblyworld commented 1 year ago

Ah, ok, thanks! I see what the issue is now - posted a fix.