Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 664 Bytes

readme.md

File metadata and controls

35 lines (26 loc) · 664 Bytes

Shacon (Shared Config)

This repo houses a set of shared configuration packages used for this @adHawk organization so we can re-use core tooling in different projects.

Packages

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"
}