This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
packwatch/jest.config.js
Marc Cataford 2ec9c0e533
build: transition to Typescript without Babel (#252)
* build: ts-jest

* build: yarn latest

* build: no babel

* chore: lint

* refactor: test, types
2021-06-05 11:29:15 -04:00

8 lines
185 B
JavaScript

module.exports = {
transformIgnorePatterns: ['.test.js'],
transform: {
'^.+\\.ts$': 'ts-jest',
},
roots: ['<rootDir>/tests'],
testMatch: ['**/*.test.ts'],
}