Skip to content

Commit

Permalink
Use ignoreToPrimitiveHint instead of loose
Browse files Browse the repository at this point in the history
  • Loading branch information
superdav42 authored and DanielC-N committed Oct 12, 2022
1 parent 74a8dea commit fcbe654
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
module.exports = {
"plugins": [
"assumptions": {
"noDocumentAll": true,
"pureGetters": true,
"iterableIsArray": true,
"ignoreToPrimitiveHint": true
},
"presets": [
[
"@babel/plugin-transform-template-literals",
"@babel/preset-env",
{
"loose": true
}
]
],
'presets': [
[
'@babel/preset-env',
{
'targets': {
'esmodules': true,
"targets": {
"esmodules": true,
},
},
useBuiltIns: "entry",
corejs: "3.25.1"
}
],
],
};

0 comments on commit fcbe654

Please sign in to comment.