File size: 271 Bytes
57a889c
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { execSync } from 'node:child_process';

try {
  execSync('tsc -p tsconfig.build.json', { stdio: 'inherit' });
} catch {
  console.warn('[build] tsc reported type errors — emitting anyway (gated by `npm run typecheck`).');
}

console.log('[build] dist ready.');