Skip to content

Commit

Permalink
Merge pull request #44 from andrewo0/update-pdf-vuer
Browse files Browse the repository at this point in the history
Add IE11 support and update dependencies.
  • Loading branch information
arkokoley authored Feb 14, 2020
2 parents 2cdb9b2 + 52131e6 commit c7fce98
Show file tree
Hide file tree
Showing 6 changed files with 3,088 additions and 1,609 deletions.
12 changes: 9 additions & 3 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"presets": [
["env", { "modules": false }],
"stage-3"
["@babel/preset-env", {
"useBuiltIns": "entry",
"corejs": 3
}]
],
"plugins": ["syntax-dynamic-import"]
"plugins": [
["@babel/transform-runtime", {
"corejs": 3
}]
]
}
39 changes: 39 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:vue/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "babel-eslint",
"ecmaVersion": 2017,
"sourceType": "module"
},
"plugins": [
"vue"
],
"rules": {
"vue/max-attributes-per-line": [
"error", {
"singleline": 3,
"multiline": {
"max": 2,
"allowFirstLine": false
}
}
],
"vue/html-closing-bracket-spacing": ["error", {
"startTag": "never",
"endTag": "never",
"selfClosingTag": "never"
}]
}
}
Loading

0 comments on commit c7fce98

Please sign in to comment.