source: frontend/node_modules/fork-ts-checker-webpack-plugin/lib/logger/LoggerConfiguration.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 581 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const LoggerFactory_1 = require("./LoggerFactory");
4function createLoggerConfiguration(compiler, options) {
5 return {
6 infrastructure: LoggerFactory_1.createLogger((options && options.infrastructure) || 'silent', compiler),
7 issues: LoggerFactory_1.createLogger((options && options.issues) || 'console', compiler),
8 devServer: (options === null || options === void 0 ? void 0 : options.devServer) !== false,
9 };
10}
11exports.createLoggerConfiguration = createLoggerConfiguration;
Note: See TracBrowser for help on using the repository browser.