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