compile | ||
test | ||
ts | ||
.gitignore | ||
.npmignore | ||
index.js | ||
LICENSE | ||
package.json | ||
README-dev.md | ||
README.md |
npmts
Write npm modules with TypeScript without hassle.
How to use npmts
Install
First install npmts as dev dependency:
npm install npmts --save-dev
Then use it in package.json's script section to trigger a build:
"scripts": {
"test": "npmts"
}
Default behaviour
by default npmts looks for an ./ts/index.ts
and a ./ts/test.ts
that will compile to
./index.js
and ./test.js
Dev Readme
There is a dev README-dev.md in the repo.