-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add custom browserslist (#2290)
* Add browserslist config. * Integrate browserslistrc w/ eslint and stylelint. * Fix config. * Remove stylelint plugin. * Fix plugin configuration. * Corrected label. * Delete old comment.
- Loading branch information
Showing
6 changed files
with
196 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# DUP | ||
ChromeAndroid 61 | ||
# Sectional (Solari) | ||
Firefox 90 | ||
# Sectional (GDS) | ||
Firefox 126 | ||
# Pre-Fare | ||
Chrome 126 | ||
# Bus Shelter | ||
Firefox 126 | ||
# Bus E-ink (GDS) | ||
Chrome 45 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"presets": [ | ||
"@babel/preset-env", | ||
"@babel/preset-react", | ||
"@babel/preset-typescript" | ||
], | ||
"plugins": [ | ||
"@babel/plugin-proposal-export-default-from", | ||
"@babel/plugin-proposal-logical-assignment-operators", | ||
["@babel/plugin-proposal-optional-chaining", { "loose": false }], | ||
["@babel/plugin-proposal-pipeline-operator", { "proposal": "minimal" }], | ||
["@babel/plugin-proposal-nullish-coalescing-operator", { "loose": false }], | ||
"@babel/plugin-proposal-do-expressions" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.