/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/node_modules/aws-crt/scripts
This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */const fs = require("fs");const child_process = require("child_process"); function run(cmd) { console.log(`> ${cmd}`) child_process.execSync(cmd, { stdio: "inherit" });} // Run TSCrun('npx tsc -p tsconfig.json')run('npx tsc -p tsconfig.browser.json'); // Copy the binding declaration file over verbatimfs.copyFileSync('lib/native/binding.d.ts', 'dist/native/binding.d.ts');