Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Commit

Permalink
feat: simplify babel config (#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed Nov 4, 2021
1 parent 6376026 commit ad10350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configs/babel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const {babel = {jest: true}} = (tool.config as ConfigFile<Settings>).settings;
// Used only for jest
const config: BabelConfig = babel.jest
? {
presets: [['@babel/preset-env', {targets: {node: 'current'}}], '@babel/preset-typescript'],
presets: [['@babel/env', {targets: {node: 'current'}}], '@babel/typescript'],
}
: {
// TODO
Expand Down

0 comments on commit ad10350

Please sign in to comment.