Skip to content

Commit

Permalink
feat: add global build
Browse files Browse the repository at this point in the history
resolves storacha#2
  • Loading branch information
Alan Shaw committed Sep 7, 2022
1 parent 72cdbc6 commit b1034c1
Show file tree
Hide file tree
Showing 16 changed files with 7,926 additions and 14 deletions.
6 changes: 6 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Chrome >= 73
Firefox >= 78
Edge >= 79
Safari >= 12.0
iOS >= 12.0
opera >= 53
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
build
17 changes: 17 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
presets: [
[
'@babel/preset-env',
{
loose: true,
modules: false,
exclude: [
'@babel/plugin-transform-regenerator',
'@babel/plugin-transform-parameters'
]
}
],
'@babel/preset-typescript',
'@babel/preset-react'
]
}
Loading

0 comments on commit b1034c1

Please sign in to comment.