chore(deps): upgrade TypeScript to 6.0.3 and align Expo SDK 56 packages (#1719)

This commit is contained in:
Gauvain
2026-06-16 20:28:02 +02:00
committed by GitHub
parent 434cb3bd39
commit 335f1efb2c
5 changed files with 98 additions and 97 deletions

View File

@@ -140,7 +140,16 @@ function runTypeCheck() {
const extraArgs = process.argv.slice(2);
// Prefer local TypeScript binary when available
const runnerArgs = ["-p", "tsconfig.json", "--noEmit", ...extraArgs];
// --pretty false: TS 6 enables pretty output even when piped, which breaks
// the line-based error parser below
const runnerArgs = [
"-p",
"tsconfig.json",
"--noEmit",
"--pretty",
"false",
...extraArgs,
];
let execArgs = null;
try {
const tscBin = require.resolve("typescript/bin/tsc");