@compgen/ts-node
TypeScript icon, indicating that this package has built-in type declarations

0.1.15 • Public • Published

@compgen/ts-node

A micro generator for generating ts-node configuration.

CLI

I highly recommend using npx so that you don't have to install anything globally, and you can always get the latest version from npm.

  • optional --path=target_folder
npx @compgen/ts-node

Programmatically

You have to generate JSON schema and use execute function from @compgen/core:

// src/index.ts
import { execute, getProjectFolder } from '@compgen/core'
import { createSchema } from '@compgen/ts-node'

const generate = async () => {
  const projectFolder = getProjectFolder() ?? '.'

  const schema = createSchema()
  await execute(schema, projectFolder)
}

generate()

Now all you have to do is run:

ts-node src/index.ts

Readme

Keywords

none

Package Sidebar

Install

npm i @compgen/ts-node

Weekly Downloads

3

Version

0.1.15

License

MIT

Unpacked Size

14.2 kB

Total Files

9

Last publish

Collaborators

  • michal.jarnot