0.0.7 • Published 6 months ago

@gmjs/jest-config v0.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Jest Config

This package contains a function used to create a Jest config object.

Currently, this is a ts-jest configuration.

Installation

npm install --save-dev @gmjs/eslint-config

Usage

Create an Jest config file, for example jest.config.ts:

import type { JestConfigWithTsJest } from 'ts-jest';
import { getJestConfig } from '@gmjs/jest-config';

export default async (): Promise<JestConfigWithTsJest> => {
  const defaultConfig = await getJestConfig();
  return {
    ...defaultConfig,
  };
};
0.0.3

9 months ago

0.0.2

10 months ago

0.0.5

8 months ago

0.0.4

8 months ago

0.0.7

6 months ago

0.0.6

8 months ago

0.0.1

12 months ago