[READ-ONLY] Mirror of https://github.com/bombshell-dev/tools. Internal CLI to standardize tooling across all Bombshell projects
0

Configure Feed

Select the types of activity you want to include in your feed.

feat(dev): use --experimental-transform-types

Nate Moore (Mar 2, 2026, 4:42 PM EST) 42d70e51 12d4b4c3

+2 -2
+2 -2
src/commands/dev.ts
··· 6 6 const { args } = ctx; 7 7 const [file = "./src/index.ts", ...rest] = args; 8 8 // console.clear(); 9 - console.log(`node --experimental-strip-types --no-warnings ${args.join(" ")}`); 9 + console.log(`node --experimental-transform-types --disable-warning=ExperimentalWarning ${args.join(" ")}`); 10 10 const stdio = x("node", [ 11 - "--experimental-strip-types", 11 + "--experimental-transform-types", 12 12 "--no-warnings", 13 13 "--watch-path=./src/", 14 14 file,