Minor Changes
-
#2003
1504a06Thanks @mrlubos! - feat: respectmoduleResolutionvalue intsconfig.jsonRespecting
moduleResolutionvalue intsconfig.jsonThis release introduces functionality related to your
tsconfig.jsonfile. The initial feature properly respects the value of yourmoduleResolutionfield. If you're usingnodenext, the relative module paths in your output will be appended with.js. To preserve the previous behavior where we never appended.jsto relative module paths, setoutput.tsConfigPathtooff.export default { input: 'https://get.heyapi.dev/hey-api/backend', output: { path: 'src/client', tsConfigPath: 'off', }, };