Files
remoteconn-gitea/scripts/typecheck.mjs
2026-03-21 18:57:10 +08:00

10 lines
222 B
JavaScript

import { execSync } from "node:child_process";
const targets = ["prototype/liquid-console.js"];
for (const file of targets) {
execSync(`node --check ${file}`, { stdio: "inherit" });
}
console.log("typecheck passed");