mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-08 04:22:09 +00:00
The intention is for this to be a drop-in replacement for compiling TypeScript to JavaScript, but using `esbuild` instead of `tsc`. `tsc` is still needed, but only for the cases where we want to generate type definitions.
4 lines
132 B
JavaScript
4 lines
132 B
JavaScript
import { tsc, esbuild } from '../../utils/build.mjs';
|
|
|
|
await Promise.all([tsc(), esbuild().then(() => esbuild({ bundle: true }))]);
|