Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
gateway-proxy / usr / share / gateway-proxy / app / node_modules / ts-jest / dist / compiler / ts-jest-compiler.js
Size: Mime:
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TsJestCompiler = void 0;
var ts_compiler_1 = require("./ts-compiler");
var TsJestCompiler = (function () {
    function TsJestCompiler(configSet, runtimeCacheFS) {
        this._compilerInstance = new ts_compiler_1.TsCompiler(configSet, runtimeCacheFS);
    }
    TsJestCompiler.prototype.getResolvedModules = function (fileContent, fileName, runtimeCacheFS) {
        return this._compilerInstance.getResolvedModules(fileContent, fileName, runtimeCacheFS);
    };
    TsJestCompiler.prototype.getCompiledOutput = function (fileContent, fileName, options) {
        return this._compilerInstance.getCompiledOutput(fileContent, fileName, options);
    };
    return TsJestCompiler;
}());
exports.TsJestCompiler = TsJestCompiler;