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.
The package is causing the compiler to leave behind files it would have otherwise copied to the dist dir.
dist will have
auth.cjs&auth.mjsbut no accompanyingusers.json.it should also include that imported file in dist dir as the default tsc compiler does.