npm.io
1.2.1 • Published 7 years agoCLI

type-scripts

Licence
MIT
Version
1.2.1
Deps
8
Size
9 kB
Vulns
3
Weekly
0
Stars
7

code style: prettier lerna

type-scripts

Scripts to help develop, test, and build Typescript packages.

Tutorial

Here's a quick tutorial on how to build a Typescript package with type-scripts.

Step 1: Initialize the Package

mkdir my-cool-pkg
cd my-cool-pkg

yarn init
Step 2: Setup types-scripts

Install type-scripts

yarn add --dev type-scripts

And then setup your build script in the package.json.

package.json

{
  "scripts": {
    "build": "type-scripts-build"
  }
}
Step 3: Add the index.ts

src/index.ts

export default function() {
  console.log("Hello World")
}
Step 4: Build your package
yarn build

You're package will be output to build/my-cool-pkg.js