UNPKG

@bengo.co/typescript-web-starter

Version:

A simple website project written in TypeScript. Use this as a starting point for your project.

13 lines (10 loc) 170 B
/** * main test module. * Execute this script to run all tests. */ import { cli } from "./cli"; if (require.main === module) { cli().catch(e => { throw e; }); }