This repo houses a set of shared configuration packages used for this @adHawk organization so we can re-use core tooling in different projects.
To use, add this packages to your presets
in a Babel config.
{
"presets": [
["@adhawk/babel-preset", {
"react": true
}]
]
}
To use, add this packages to your preset
in a Jest config.
module.exports = {
preset: "@adhawk/jest-preset/default"
}
// Or for React
module.exports = {
preset: "@adhawk/jest-preset/react"
}