Awesome jest config for TypeScript projects
Install
npm install @tdd-buffet/jest-config
Usage
The config focuses on providing a good developer experience with TypeScript. Tests are type checked before they are run and certain harmful options in tsconfing.json
files are turned off. You can extend the config and override it as you see fit.
const baseConfig = require('@tdd-buffet/jest-config');
module.exports = {
...baseConfig
};