diff --git a/website/playground/util.js b/website/playground/util.js index 13db0625..c78ce6e9 100644 --- a/website/playground/util.js +++ b/website/playground/util.js @@ -11,9 +11,7 @@ export function getDefaults(availableOptions, optionNames) { for (const option of availableOptions) { if (optionNames.includes(option.name)) { defaults[option.name] = - option.name === "parser" - ? "babylon" // TODO(1.16): replace with `babel` - : option.default; + option.name === "parser" ? "babel" : option.default; } } return defaults;