0.0.7 • Published 2 years ago

@gmjs/jest-config v0.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years 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

3 years ago

0.0.2

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.7

2 years ago

0.0.6

3 years ago

0.0.1

3 years ago