source: imaps-frontend/node_modules/@babel/plugin-syntax-jsx/lib/index.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 569 bytes
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = void 0;
7var _helperPluginUtils = require("@babel/helper-plugin-utils");
8var _default = exports.default = (0, _helperPluginUtils.declare)(api => {
9 api.assertVersion(7);
10 return {
11 name: "syntax-jsx",
12 manipulateOptions(opts, parserOpts) {
13 {
14 if (parserOpts.plugins.some(p => (Array.isArray(p) ? p[0] : p) === "typescript")) {
15 return;
16 }
17 }
18 parserOpts.plugins.push("jsx");
19 }
20 };
21});
22
23//# sourceMappingURL=index.js.map
Note: See TracBrowser for help on using the repository browser.