tsc-multi icon indicating copy to clipboard operation
tsc-multi copied to clipboard

transformer is renaming .json files to .json.cjs

Open emahuni opened this issue 2 years ago • 0 comments

The transformer is renaming .json files that it is not supposed to. EG:

import users from './users.json'

the result comes as

import users from './users.json.cjs'

the expected result is that it shouldn't touch anything that is not js.

import users from './users.json'

and on top of that the file doesn't exist in the dist dir.

emahuni avatar Jan 23 '23 16:01 emahuni