Skip to content

Instantly share code, notes, and snippets.

//@ts-check
import { watch } from "chokidar";
import { exec, execSync } from "node:child_process";
import { exit } from "node:process";
const watcher = watch(["./src", "./units", "./index.html"], {
persistent: true,
usePolling: true,
interval: 100,
});