scroll/src/tsx/mod.ts
Timothy J. Warren 1951425508
All checks were successful
timw4mail/scroll/pipeline/head This commit looks good
Refactor runtimes
2024-07-12 10:58:23 -04:00

15 lines
290 B
JavaScript

/**
* The main entrypoint when using Tsx as the runtime
*/
import { CommonRuntime, IRuntime, RunTimeType } from '../common/runtime/mod.ts';
/**
* The Tsx Runtime implementation
*/
const TsxRuntime: IRuntime = {
...CommonRuntime,
name: RunTimeType.Tsx,
};
export default TsxRuntime;