source: frontend/node_modules/fork-ts-checker-webpack-plugin/lib/formatter/BasicFormatter.js

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

Fix frontend appearance

  • Property mode set to 100644
File size: 479 bytes
Line 
1"use strict";
2var __importDefault = (this && this.__importDefault) || function (mod) {
3 return (mod && mod.__esModule) ? mod : { "default": mod };
4};
5Object.defineProperty(exports, "__esModule", { value: true });
6const chalk_1 = __importDefault(require("chalk"));
7function createBasicFormatter() {
8 return function basicFormatter(issue) {
9 return chalk_1.default.grey(issue.code + ': ') + issue.message;
10 };
11}
12exports.createBasicFormatter = createBasicFormatter;
Note: See TracBrowser for help on using the repository browser.