From 9c77e9b9442df775bf1b54f896fff77693905cc7 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Tue, 13 Apr 2021 13:55:22 -0700 Subject: [PATCH] Don't explicitly set the default --- scripts/gulpfiles/build_tasks.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/gulpfiles/build_tasks.js b/scripts/gulpfiles/build_tasks.js index 0b102e12c..40adbbaab 100644 --- a/scripts/gulpfiles/build_tasks.js +++ b/scripts/gulpfiles/build_tasks.js @@ -116,8 +116,6 @@ function compile(compilerOptions, opt_verbose, opt_warnings_as_error, const options = {}; options.compilation_level = 'SIMPLE_OPTIMIZATIONS'; options.warning_level = opt_verbose ? 'VERBOSE' : 'DEFAULT'; - // Use stable, regardless of what was passed in. - options.language_in = 'STABLE'; options.language_out = 'ECMASCRIPT5_STRICT'; options.rewrite_polyfills = false; options.hide_warnings_for = 'node_modules';