@lowvisiondave/jest-config
v0.1.3
Published
A shared config file for [Jest](https://jestjs.io/) with TypeScript support.
Downloads
4
Readme
@lowvisiondave/jest-config
A shared config file for Jest with TypeScript support.
Installation
Install the package with your favorite package manager:
pnpm add -D @lowvisiondave/jest-config
Usage
Create a jest.config.ts
file in the root of your package:
import { config } from "@lowvisiondave/jest-config";
import type { Config } from "@lowvisiondave/jest-config";
export default {
...config,
// Additional configuration
} as Config.InitialOptions;