tsc-multi
tsc-multi copied to clipboard
causes tsc not to emit relative (non-ts) files
The package is causing the compiler to leave behind files it would have otherwise copied to the dist dir.
// auth.ts
import users from './users.json'
dist will have auth.cjs
& auth.mjs
but no accompanying users.json
.
it should also include that imported file in dist dir as the default tsc compiler does.
this is after fixing issue #15 that addresses a related issue