1
0
mirror of https://github.com/lancedikson/bowser synced 2026-03-02 03:40:27 +00:00
This commit is contained in:
Denis Demchenko
2019-03-06 14:37:21 +02:00
commit 249786fcd1
48 changed files with 31253 additions and 0 deletions

19
.babelrc Normal file
View File

@@ -0,0 +1,19 @@
{
"presets": [["@babel/preset-env", {
"useBuiltIns": "entry",
"modules": "umd",
"targets": {
"ie": "8",
"browsers": ">2%"
}
}]],
"plugins": [
"add-module-exports"
],
"env": {
"test": {
"plugins": [ "istanbul" ],
"presets": [["@babel/preset-env", { "targets": { "node": "current" } }]]
}
}
}