blob: 0a3b5eb1e4e8b829febd92d9de401f657bb789f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
function _helperPluginUtils() {
const data = require("@babel/helper-plugin-utils");
_helperPluginUtils = function _helperPluginUtils() {
return data;
};
return data;
}
function _pluginSyntaxDecorators() {
const data = _interopRequireDefault(require("@babel/plugin-syntax-decorators"));
_pluginSyntaxDecorators = function _pluginSyntaxDecorators() {
return data;
};
return data;
}
var _transformer = _interopRequireDefault(require("./transformer"));
var _transformerLegacy = _interopRequireDefault(require("./transformer-legacy"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var _default = (0, _helperPluginUtils().declare)((api, options) => {
api.assertVersion(7);
const _options$legacy = options.legacy,
legacy = _options$legacy === void 0 ? false : _options$legacy;
if (typeof legacy !== "boolean") {
throw new Error("'legacy' must be a boolean.");
}
if (legacy !== true) {
throw new Error("The new decorators proposal is not supported yet." + ' You must pass the `"legacy": true` option to' + " @babel/plugin-proposal-decorators");
}
return {
inherits: _pluginSyntaxDecorators().default,
visitor: legacy ? _transformerLegacy.default : _transformer.default
};
});
exports.default = _default;
|