source: frontend/node_modules/tsconfig-paths/lib/options.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: 386 bytes
RevLine 
[9af201e]1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.options = void 0;
4var minimist = require("minimist");
5var argv = minimist(process.argv.slice(2), {
6 string: ["project"],
7 alias: {
8 project: ["P"],
9 },
10});
11var project = argv && argv.project;
12exports.options = {
13 cwd: project || process.cwd(),
14};
15//# sourceMappingURL=options.js.map
Note: See TracBrowser for help on using the repository browser.