1.1.1 • Published 8 years ago
create-typescript-package v1.1.1
Create Typescript Package
Create a new Typescript package with zero build configuration.
Getting Started
Install create-typescript-package:
npm install -g create-typescript-packageCreate your new package
create-typescript-package my-pkgA new directory will be created with the following contents:
my-pkg/
package.json
.gitignore
src/
index.ts
bar.tsThe latest version of typescript and type-scripts will be installed and added to the deveDependencies in your package.json.
Scripts
Build
npm run buildThe built project will be output to build/my-pkg.js.
All dependencies will be bundled with your code.
All peerDependencies will not be bundled.