1DOLLY 32MODULE typescript34# The unchanged npm TypeScript distribution runs under Janis. Its launcher is5# compiled as an ordinary Dolly executable and the compiler is exercised in6# the sandbox before this reusable layer is published.7REQUIRES HEADER libc8REQUIRES HEADER quickjs-runner9REQUIRES LIB    dolly-js10REQUIRES TOOL   cc11REQUIRES TOOL   gzip12REQUIRES TOOL   make13REQUIRES TOOL   mkdir14REQUIRES TOOL   qjs15REQUIRES TOOL   rm16REQUIRES TOOL   tar1718SOURCE HOST /static/default/typescript-5.9.3.tgz   /tmp/typescript/typescript.tgz    10e108c9cf7d5f2879053dff18515fb405abf2ccef63eaaf017d9c571687a1d319SOURCE HOST /static/default/runtimes/tsc-dolly.mjs /usr/lib/typescript/tsc-dolly.mjs c81fe4905c8a1aeb83fd8dca09f7ad05242d2975efa91c1c7f004acc23eac80d20SOURCE HOST /static/default/commands/tsc.c         /tmp/typescript/tsc.c             eed8eb879762896740cec873c5ff227bc819e82b422bb2a35d32d420c0aee5eb2122SLOP gzip \23  -dc \24  /tmp/typescript/typescript.tgz \25  > /tmp/typescript/typescript.tar26SLOP mkdir \27  -p \28  /usr/lib/typescript29SLOP tar \30  -xf /tmp/typescript/typescript.tar \31  -C /usr/lib/typescript3233FILE /tmp/typescript/Makefile34    .RECIPEPREFIX := >35    CPPFLAGS := -std=gnu11 -I /usr/include/dolly -DEMSCRIPTEN=1 -D_GNU_SOURCE -DQUICKJS_NG_BUILD -DNDEBUG -funsigned-char -fdolly-runtime-interrupt-handler36    all: /usr/bin/tsc37    /usr/bin/tsc: /tmp/typescript/tsc.c /usr/lib/typescript/tsc-dolly.mjs /usr/lib/typescript/package/lib/_tsc.js38    >cc $(CPPFLAGS) $< -ldolly-js -o $@39SLOP make \40  -f /tmp/typescript/Makefile4142EXPORTS TOOL   tsc43EXPORTS FOLDER typescript /usr/lib/typescript4445SLOP tsc \46  --version4748SLOP rm \49  -rf \50  /tmp/typescript51