I want to import a json file that contains an array in my typescript package. Once I run the tsc command I'd like to have an output file that shows the contents of the array correctly.
E.g.
// someArray.json
[
"hello",
"world"
]
// src/someFile.ts
export {default as variableSomeArray} from '../someArray.json'
Would love for output of someFile.d.ts to show variableSomeArray as ["hello", "world"] even if the json file is copied into the output it's fine for me.