UNPKG

webpack-genius

Version:

**For chinese developers:** you'd better add taobao mirror before everything start. Or you may fail to install. ```bash yarn config set registry http://registry.npm.taobao.org ```

17 lines (16 loc) 497 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Jsx = void 0; var tslib_1 = require("tslib"); var BabelHandle_1 = require("./BabelHandle"); var Jsx = /** @class */ (function (_super) { tslib_1.__extends(Jsx, _super); function Jsx() { return _super !== null && _super.apply(this, arguments) || this; } Jsx.prototype.test = function () { return /\.jsx?$/i; }; return Jsx; }(BabelHandle_1.BabelHandle)); exports.Jsx = Jsx;