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

Function tscDocs

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

Source from the content-addressed store, hash-verified

5// Run tsc for docs separately because it requires e.g. qwik-react types to be built first
6// plus it takes some time to run and we don't need to run it during core dev.
7export async function tscDocs(config: BuildConfig) {
8 const result = await execa('tsc', ['-p', join('packages', 'docs', 'tsconfig.json')], {
9 stdout: 'inherit',
10 });
11 if (result.failed) {
12 panic(`tsc for docs failed`);
13 }
14}

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…