summaryrefslogtreecommitdiff
path: root/src/args.ts
blob: c5f66fcf3af34ec9f4f3aff8594689a2091e6012 (plain)
1
2
3
4
5
6
7
8
9
10
11
const argv = require('minimist')(process.argv.slice(2));

export type Args = {
  devMode: boolean;
  repl: boolean;
};

export const args: Args = {
  repl: argv.repl ?? false,
  devMode: argv.dev ?? false,
};