This commit is contained in:
parent
65139bf8d0
commit
44431c4e66
71 changed files with 2262 additions and 1173 deletions
|
|
@ -39,10 +39,24 @@ for (const tsconfig of tsconfigs) {
|
|||
const label = relative(process.cwd(), tsconfig);
|
||||
console.log(`\nTypechecking ${label}`);
|
||||
|
||||
const result = Bun.spawnSync([bunExecutable, "x", "tsc", "-p", tsconfig, "--noEmit", "--incremental", "false", "--pretty", "false"], {
|
||||
stdout: "inherit",
|
||||
stderr: "inherit"
|
||||
});
|
||||
const result = Bun.spawnSync(
|
||||
[
|
||||
bunExecutable,
|
||||
"x",
|
||||
"tsc",
|
||||
"-p",
|
||||
tsconfig,
|
||||
"--noEmit",
|
||||
"--incremental",
|
||||
"false",
|
||||
"--pretty",
|
||||
"false"
|
||||
],
|
||||
{
|
||||
stdout: "inherit",
|
||||
stderr: "inherit"
|
||||
}
|
||||
);
|
||||
|
||||
if (result.exitCode !== 0) {
|
||||
failed = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue