We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42d70e5 commit f7803cfCopy full SHA for f7803cf
src/commands/dev.ts
@@ -6,7 +6,9 @@ export async function dev(ctx: CommandContext) {
6
const { args } = ctx;
7
const [file = "./src/index.ts", ...rest] = args;
8
// console.clear();
9
- console.log(`node --experimental-transform-types --disable-warning=ExperimentalWarning ${args.join(" ")}`);
+ console.log(
10
+ `node --experimental-transform-types --disable-warning=ExperimentalWarning ${args.join(" ")}`,
11
+ );
12
const stdio = x("node", [
13
"--experimental-transform-types",
14
"--no-warnings",
0 commit comments