Skip to content

Commit

Permalink
feat: adding Babel to transpile and minify the build
Browse files Browse the repository at this point in the history
  • Loading branch information
nbouvrette committed May 6, 2023
1 parent 8dc300f commit cfb0cb4
Show file tree
Hide file tree
Showing 5 changed files with 10,808 additions and 7,603 deletions.
20 changes: 20 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"presets": [
"minify",
[
"@babel/preset-env",
{
"targets": {
"browsers": ["> 0.25%", "not dead"]
},
"useBuiltIns": "usage",
"corejs": {
"version": 3,
"proposals": true
}
}
],
"@babel/preset-typescript"
],
"ignore": ["**/*.d.ts"]
}
Loading

0 comments on commit cfb0cb4

Please sign in to comment.