shipped-proposals.js 1.4 KB

1234567891011121314151617181920212223242526272829
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.proposalSyntaxPlugins = exports.proposalPlugins = exports.pluginSyntaxMap = void 0;
  6. const proposalPlugins = exports.proposalPlugins = new Set([]);
  7. const proposalSyntaxPlugins = exports.proposalSyntaxPlugins = ["syntax-import-assertions", "syntax-import-attributes"];
  8. const pluginSyntaxObject = {
  9. "transform-async-generator-functions": "syntax-async-generators",
  10. "transform-class-properties": "syntax-class-properties",
  11. "transform-class-static-block": "syntax-class-static-block",
  12. "transform-export-namespace-from": "syntax-export-namespace-from",
  13. "transform-json-strings": "syntax-json-strings",
  14. "transform-nullish-coalescing-operator": "syntax-nullish-coalescing-operator",
  15. "transform-numeric-separator": "syntax-numeric-separator",
  16. "transform-object-rest-spread": "syntax-object-rest-spread",
  17. "transform-optional-catch-binding": "syntax-optional-catch-binding",
  18. "transform-optional-chaining": "syntax-optional-chaining",
  19. "transform-private-methods": "syntax-class-properties",
  20. "transform-private-property-in-object": "syntax-private-property-in-object",
  21. "transform-unicode-property-regex": null
  22. };
  23. const pluginSyntaxEntries = Object.keys(pluginSyntaxObject).map(function (key) {
  24. return [key, pluginSyntaxObject[key]];
  25. });
  26. const pluginSyntaxMap = exports.pluginSyntaxMap = new Map(pluginSyntaxEntries);
  27. //# sourceMappingURL=shipped-proposals.js.map