保誠-保戶業務員媒合平台
tomasysh
2022-05-25 43d0eed31f4b2a59e23c06ceba3616aac3f549f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"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;