Browse Source

Remove support for some older browsers that probably didn’t wor… (#1080)

pull/1086/head
Jed Fox 6 years ago committed by GitHub
parent
commit
5b9c18a8b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 25
      package.json
  2. 2
      tsconfig.json

25
package.json

@ -1,10 +1,23 @@ @@ -1,10 +1,23 @@
{
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all",
"not safari < 12",
"not kaios <= 2.5",
"not edge < 79",
"not chrome < 70",
"not and_uc < 13",
"not samsung < 10"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"browser-nativefs": "0.4.0",
"i18next-browser-languagedetector": "4.0.2",

2
tsconfig.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es5",
"target": "es6",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,

Loading…
Cancel
Save