10 lines
222 B
JavaScript
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");
|