Skip to content

Commit

Permalink
Merge pull request #5 from pcbowers/transpile-to-es5
Browse files Browse the repository at this point in the history
build: 🚨 Added Transpilation to ES5
  • Loading branch information
pcbowers authored Apr 15, 2022
2 parents ffc932b + 8041189 commit 94244d3
Show file tree
Hide file tree
Showing 3 changed files with 714 additions and 407 deletions.
19 changes: 19 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "6",
"chrome": "59",
"safari": "10",
"firefox": "56",
"edge": "14"
}
}
],
"@babel/preset-react",
"babel-preset-minify"
],
"plugins": ["@babel/plugin-transform-arrow-functions", "@babel/plugin-proposal-class-properties"]
}
Loading

0 comments on commit 94244d3

Please sign in to comment.