Is there any way to have the TypeScript compiler also copy content files that don\'t have a ts or tsx extension to the output directory?
For example, my tsconfig.jso
This can be achieved by setting "resolveJsonModule": true in the compiler options and adding "source-path/**/*.json" to the include array in the tsconfig.json
"resolveJsonModule": true
"source-path/**/*.json"
include
tsconfig.json