Closed yaronya closed 3 years ago
esbuild-jest file load patterns are currently set to:
esbuild-jest
loaders: { '.js': 'jsx', '.test.js': 'jsx', '.ts': 'tsx', '.test.ts': 'tsx', }
This might be wrong because .ts file just get the 'tsx' loader and not ts. When using tsx for .ts I get a lot of transformation errors.
.ts
'tsx'
ts
tsx
esbuild-jest
file load patterns are currently set to:This might be wrong because
.ts
file just get the'tsx'
loader and notts
. When usingtsx
for.ts
I get a lot of transformation errors.