Closed jrnail23 closed 5 months ago
No, actually, that's the point of liveDev
. It hard-links the source files with their .ts
extensions rather than building with tsc. So you just have source
and default
.
The intention is to use it only in development, with an editor and test runner that can handle typescript directly.
I was just taking
liveDev
for a spin, and I may have found a bug. WithoutliveDev
, my config with"exports": "./src/**"
generates the following exports:while with
liveDev: true
, it generates this (note the.ts
extensions on thedefault
mappings):Shouldn't those paths from the
/dist/
dir each have.js
extensions?