Remove shippedProposals from @babel/preset-env

The shippedProposals option only applies when @babel/preset-env is
used with the useBuiltIns option. With the current setup,
@babel/plugin-transform-runtime is used for polyfills rather than
@babel/preset-env.
diff --git a/babel.config.js b/babel.config.js
index ffb36ab..55645f9 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -28,8 +28,6 @@
   const envOptions = {
     // Transform module syntax if necessary.
     modules: CJS ? 'commonjs' : false,
-    // Enable transformations for shipped proposals.
-    shippedProposals: true,
     // Set target environment to default browsers.
     targets: 'defaults',
   };