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
