ts-jest-resolver icon indicating copy to clipboard operation
ts-jest-resolver copied to clipboard

A resolver for jest that uses the same strategy as TS when resolving files with JavaScript extensions (".js", ".jsx", ".cjs" and ".mjs"). It works pretty well with ts-jest or babel with @babel/preset-...

Results 1 ts-jest-resolver issues
Sort by recently updated
recently updated
newest added

All of our TypeScript code uses `import`s without extensions. Example: ```ts import * as module from './module'; ``` This works because our code is in CommonJS; at compile time, TypeScript...