- Add 4 new tools: executeCodeAsync, getJob, execute, run - Support 42+ programming languages - Features: network isolation modes, input files, compiled artifacts, WASM - Add entity definitions for code execution results - All tools pass schema and shape validation
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
format: ['esm'],
|
|
dts: true,
|
|
clean: true,
|
|
treeshake: true,
|
|
splitting: false,
|
|
});
|