mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-17 03:10:23 +01:00
chore(deps): upgrade TypeScript to 6.0.3 and align Expo SDK 56 packages (#1719)
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user