Initial commit
This commit is contained in:
18
frontend/webapp/node_modules/tsconfig-paths/src/options.ts
generated
vendored
Normal file
18
frontend/webapp/node_modules/tsconfig-paths/src/options.ts
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import * as minimist from "minimist";
|
||||
|
||||
const argv = minimist(process.argv.slice(2), {
|
||||
string: ["project"],
|
||||
alias: {
|
||||
project: ["P"],
|
||||
},
|
||||
});
|
||||
|
||||
const project = argv && argv.project;
|
||||
|
||||
export interface Options {
|
||||
cwd: string;
|
||||
}
|
||||
|
||||
export const options: Options = {
|
||||
cwd: project || process.cwd(),
|
||||
};
|
||||
Reference in New Issue
Block a user