summaryrefslogtreecommitdiff
path: root/jest.config.ts
blob: 1c6e6c1641f215ef85ced6cdba4b6d93850446d3 (plain)
1
2
3
4
5
6
7
8
import type { Config } from 'jest'

const config: Config = {
  preset: 'ts-jest',
  roots: ['<rootDir>/src']
}

export default config