Production ready babel (with TypeScript!)

Configurable production-ready babel preset for React projects with TypeScript support.
Why
- Up to date best practices
- Tight multi-plugin configuration
- Plugins made to interop correctly together
- Centralized configuration both simplifies and ensures correctness
Usage
Just include in .babelrc
{
"presets": ["@anansi"]
}
Or configure options
Target node 10
{
"targets": { "node": "10" },
"presets": [
[
"@anansi"
]
]
}
Make transforms 'loose'
{
"presets": [
[
"@anansi",
{
"loose": true
}
]
]
}
React refresh
In dev mode, if react-refresh
is installed it will be enabled.
TypeScript
TypeScript files (.ts
, .tsx
, .mts
, .cts
, etc) are supported by removing their typings to output
javascript that node/browsers can understand.
Future language support
In addition to providing good production/development/testing transformations; some additional non-standard features
are included:
Stage 4
Stage 3
Stage 2
Stage 1
Features
Options
Options to the preset. These are configured like so
{
"presets": [
[
"@anansi",
{
"optionName": "optionValue"
}
]
]
}
Target Environment
nodeTarget : ?string = undefined
Deprecated: Prefer using top-level targets
instead
{
"targets": { "node": "current" },
"presets": ["@anansi"]
}
Will run to target node instead of browsers. Specify a valid node string like "current", or "6.15".
If unset, will automatically target current node version when webpack is targetting node.
targets : ?object = undefined
Deprecated: Prefer using top-level targets
instead
Set to { "esmodules": true }
to produce extra optimal bundles for modern browsers that support
ES modules. This will make use of @babel/preset-modules
instead of @babel/preset-env
, whose transforms
are more compact and efficient.
NOT recommended for non-{ "esmodules": true }
. Can be used to override @babel/preset-env
targets
for non-testing environment.
Use a browserslist config instead.
Feel free to use the anansi browserlist config.
modules: "amd" | "umd" | "systemjs" | "commonjs" | "cjs" | "auto" | false = false
Enable transformation of ES module syntax to another module type.
By default this tries to infer if ESModules is supported and if so, keep ESM. If this detection isn't
working correct, feel free to explicitly set.
BABEL_MODULES
This will override or set modules
option from above.
Polyfills
By default we try to conform to these design pricinpals:
- Libraries prefer to not introduce side-effects
- Commonjs bundles should require polyfills instead of bundling to:
- reduce file-size, parse time, and improve JIT opportunities
- UMD bundles cannot import, therefore should bundle polyfills
- Applications prefer side-effect versions for simplicity
- Infer intent by detecting which runtime and polyfill package is explicitly installed in the CWD
polyfillMethod
‘usage-global’ | ‘entry-global’ | ‘usage-pure’ | false | undefined
This determines how to handle polyfills.
plugin reference
undefined
This is the default - it will automatically determine a reasonable default based on other factors.
'usage-pure' when detecting 'library build' (@babel/cli, rollup or caller.library is true)
Otherwise, if 'core-js' and '@babel/runtime' package are found, 'entry-global'.
If just 'core-js' is found, 'usage-entry'
Otherwise false
.
entry-global
Transforms core-js import into only the polyfills needed for the target environment. This can be best when
a good code-splitting strategy for polyfills is in the place.
Turns
import 'core-js'
into
import 'core-js/es/object/has-own'
Like useBuiltins: entry for babel-preset-env.
usage-global
Only imports polyfills as-needed both based on target environment and usage.
import 'core-js/es/object/has-own'
Object.hasOwn({ a: 1 }, 'a')
Like useBuiltins: usage for babel-preset-env.
usage-pure
This doesn't pollute the global scope. This is recommended when bundling libraries.
import _Object$hasOwn from "core-js-pure/stable/object/has-own.js"
_Object$hasOwn({ a: 1 }, 'a')
false
Do not perform any transforms related to core-js or polyfills.
corejsVersion
Specifies the core-js version to target. Without specified will use the version found by importing.
useESModules: boolean = !(env === 'test' || options.nodeTarget)
This uses the es6 module version of @babel/runtime.
"This allows for smaller builds in module systems like webpack, since it doesn't need to preserve commonjs semantics."
By default, tries to infer whether this can be used.
Set this to false for maximum compatibility.
useBuiltIns: "usage" | "entry" | false = "entry"
This option configures how @anansi/babel-preset handles polyfills. Both usage
and entry
will
only include polyfills needed for the target.
entry
allows you to control when/where the polyfills are loaded by
adding your own import of core-js. You can even import pieces selectively.
usage
will add imports everywhere a file is used, which can make it harder to split polyfills if they
are not needed.
corejs: { version: 3, proposals: true }
Which core-js version to use when useBuiltIns is not false
runtimePkg = "@babel/runtime"
Can be @babel/runtime-corejs3
or @babel/runtime-corejs2
. Using the corejs version will
add imports to the 'pure' form of core-js, which doesn't change global objects. This will however
result in heavily increased bundle sizes, so it's generally preferred to stay with the default.
polyfillTargets
POLYFILL_TARGETS env will override this option
Allows for different output targets determining which polyfills to include than what
code transforms are applied.
This is sometimes useful when bundling library JS that must work in many environments, but one
expects the consumer of the library to handle legacy polyfills themselves.
Safari 15.4 came with Object.hasOwn(). Therefore this would disable inclusion of the Object.hasOwn polyfill (among others).
{
"presets": [
[
"@anansi",
{
"polyfillTargets": "safari>15.3"
}
]
]
}
Additional Transforms
minify: bool = false
Setting this to true will run the minifier babel-minify
Be sure to install babel-minify as it is listed as an optional peerdependency here.
loose: bool = false
- class properties
- private methods
- all things in preset-env
- legacy decorators
version
: "2023-05", "2023-01", "2022-03", "2021-12", "2018-09" or "legacy". defaults to "2023-05"
decoratorsBeforeExport
reactCompiler: {compilationMode?: "annotation"}
Run the React Compiler. This is still experimental - be sure to
check compatibility before turning this on.
By default does not run. Include empty object or a configuration to turn on.
** Requires React 19+ **
** This only runs in production **
reactConstantElementsOptions: { allowMutablePropsOnTags?: string[] } | false
Configures the options for react-constant-elements.
Setting to false disables this optimization altogether. Note: this is only ever used in production mode
hasJsxRuntime
** Defaults to true
. Set this to false
explicitly to use with React <=16.13 **
Use new jsx transform.
Available in React >16.14.
- With the new transform, you can use JSX without importing React.
- Depending on your setup, its compiled output may slightly improve the bundle size.
- It will enable future improvements that reduce the number of concepts you need to learn React.
Note: This is automatically set when using anansi webpack using the caller config
tsConfigPath
Specifies the tsconfig.json file location to automatically apply tsconfig path mapping.
.babelrc.js
module.exports = {
presets: [['@anansi', { tsConfigPath: '.' }]],
};
Merges with module resolver options
TS_CONFIG_PATH
Overrides tsConfigPath
.
export TS_CONFIG_PATH = './tsconfig.json'
module-resolver options
resolverRoot
Sets the root root.
root = ['./src'];
RESOLVER_ROOT
Overrides resolverRoot
.
export RESOLVER_ROOT = './src'
resolverAlias
JSON representation of the alias object option.
{
"underscore": "lodash",
"^@namespace/foo-(.+)": "packages/\\1"
}
RESOLVER_ALIAS
If RESOLVER_ALIAS
env is set, it will override this setting. Be sure to JSON encode.
export RESOLVER_ALIAS = '{"underscore":"lodash","^@namespace/foo-(.+)":"packages/\\\\1"}'
resolver
Full control of module-resolver options.
Sets as default, so resolverRoot
and resolverAlias
will override root
and alias
respectively.
root-import options
rootPathSuffix: string = './src'
Enables importing from project root with ~/my/path
rather than using relative paths. Override
this if your project root is in another directory.
This is the recommended way to manage imports in larger libraries.
When using with typescript, be sure to add to tsconfig.json:
{
"baseUrl": "./src",
"paths": { "~/*": ["*"] }
}
rootPathPrefix: string = '~/'
Configures what prefix is used to trigger root imports.
rootPathRoot: undefined
Controls the root.
No value (undefined) means use current working directory.
Sending __dirname
from a .babelrc.js
can be useful to ensure consistency no matter
where babel starts running from.