MCPcopy
hub / github.com/QwikDev/qwik / tscQwik

Function tscQwik

scripts/tsc.ts:6–14  ·  view source on GitHub ↗
(config: BuildConfig)

Source from the content-addressed store, hash-verified

4
5// TODO DRY
6export async function tscQwik(config: BuildConfig) {
7 console.log('tsc qwik');
8 const result = await execa('tsc', ['-p', join(config.srcQwikDir, '..', 'tsconfig.json')], {
9 stdout: 'inherit',
10 });
11 if (result.failed) {
12 panic(`tsc for qwik failed`);
13 }
14}
15
16export async function tscQwikCity(config: BuildConfig) {
17 console.log('tsc qwik-city');

Callers 1

buildFunction · 0.90

Calls 2

joinFunction · 0.90
panicFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…