Skip to content

Commit

Permalink
feat: drop support of old browsers
Browse files Browse the repository at this point in the history
BREAKING CHANGE: iTowns now officially supports only the two last
versions + versions with >0.5% market share of popular browsers as
well as the lastest version of Firefox ESR. WebGL2.0 support is also
mandatory.
  • Loading branch information
Desplandis committed Feb 5, 2024
1 parent 4d4e28f commit e81e117
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .babelrc
@@ -1,5 +1,12 @@
{
"presets": [["@babel/preset-env", { "modules": "auto" }]],
"presets": [
["@babel/preset-env", {
"targets": {
"browsers": "defaults and supports webgl2"
},
"modules": "auto"
}]
],
"plugins": [
["module-resolver", { "root": ["./src"] } ],
["babel-plugin-inline-import", {
Expand Down

0 comments on commit e81e117

Please sign in to comment.