tscoverage/README.md

45 lines
1.0 KiB
Markdown
Raw Normal View History

2016-01-16 13:09:33 +00:00
# npmts
2016-01-16 13:20:14 +00:00
Write npm modules with TypeScript without hassle.
2016-01-16 13:09:33 +00:00
## How to use npmts
### Install
First install npmts as dev dependency:
```sh
npm install npmts --save-dev
```
Then use it in package.json's script section to trigger a build:
```json
"scripts": {
"test": "npmts"
}
```
### Default behaviour
2016-01-18 14:15:15 +00:00
by default npmts looks for `./ts/index.ts` and `./ts/test.ts` that will compile to
2016-01-16 13:20:14 +00:00
`./index.js` and `./test.js`
2016-01-18 14:35:44 +00:00
#### Declaration files
**npmts** also creates an `index.d.ts` declaration file by default.
2016-01-18 14:20:23 +00:00
You can reference it in your package.json like this:
```json
"main": "index.js",
"typings": "./index.d.ts",
```
When requiring the module from other TypeScript files,
the TypeScript Compiler will use the declaration file to resolve typings.
2016-01-18 14:35:44 +00:00
2016-01-18 14:15:15 +00:00
2016-01-16 13:42:30 +00:00
### Custom behaviour
We are currently building support for custom behaviour with a super simple config file.
Check back soon.
## Readme for Devs
There is a [README-dev.md](README-dev.md) in the repo.
2016-01-18 14:15:15 +00:00
This is only of interest for you when looking to contribute to, improve or build upon this package.