- Add new e2b tool package for cloud sandbox code execution - Update docs navigation with descriptions and developers guide section - Configure blocks.yml for e2b tool discovery
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,
|
|
sourcemap: true,
|
|
target: 'es2022',
|
|
});
|