All checks were successful
timw4mail/scroll/pipeline/head This commit looks good
15 lines
290 B
JavaScript
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;
|