Bump eslint-plugin-import to avoid vulnerability in dependency
This commit is contained in:
parent
10695e6a20
commit
ed9506bbaf
1660 changed files with 67726 additions and 27926 deletions
18
node_modules/tsconfig-paths/src/options.ts
generated
vendored
Normal file
18
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(),
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue