Skip to content

togglhire/babel-preset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hundred5 Babel preset

This preset configures Babel to transform TypeScript and React code with all new fancy JavaScript and TypeScript features.

Usage

Add @hundred5/babel-preset to the dev dependencies and then include it in the Babel config:

{
  "presets": ["@hundred5/babel-preset"]
}

Don't forget to also install @babel/runtime, as the generated code may use helpers from the package.

App-specific plugins, such as Emotion or lodash, should be installed in the app and not added to this preset, as different apps may require different versions of the plugins.

Features

  • Transforms JSX using React preset
  • Transforms TypeScript 3.7 syntax using TypeScript preset
  • Transforms modern JS features (async functions, for example) to code understood by target browsers (more info here)
  • Transforms imports into requires when necessary (running tests in node.js, for example)
  • Supports dynamic import (import('x').then(...)) in browsers and node.js

Testing

There are two snapshot tests in the test directory. After making changes to the preset run the tests and update the snapshots if needed, but manually verify that the output still makes sense (such as code is properly transformed and there are no helpers missing).

About

Babel configuration preset used in Hundred5 apps

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published