ts-init
v2.2.0
Published
Minimalist TypeScript package initializer - like `npm init`, but for TS
Downloads
27
Maintainers
Readme
ts init
Minimalist TypeScript package initializer - like npm init
, but for TS.
Install globally:
npm i -g ts-init
From now, whenever you want to create a new TypeScript project, just run:
npm init
ts-init
What does it actually do? Well, not a lot! It will:
- Install dev dependencies: typescript, ts-node and rimraf (for cross-platform
rm -rf
). - Create npm scripts to build your project with TS compiler and run it with
ts-node
. Build files will be also properly declared in yourpackage.json
and added to.gitignore
. - Create a minimalist
tsconfig.json
file with sane defaults: ES6 with the following flags set to true:alwaysStrict
,strictNullChecks
,noImplicitAny
.
Scripts
npm run build
- build your projectnpm run ts
- run your project withts-node
Project structure
src/
- your source files, must containindex.ts
file.test/
- your test fileses/
- ES6 build using ES moduleslib/
- ES5 build using CommonJS (npm) modules. This directory contains*.d.ts
declaration files too.
Motivation
Almost every JavaScript library should be written in TypeScript.
This project is meant to provide everything you need in order to create an npm library (and potentially any other JS project) with modern TypeScript compiler. This way you can use modern ES6 features and static types without any cost.
In the same time, it tries not to force you to use something which is just an opinionated tool. It doesn't include a linter, testing library like Jest or some heavy TS configuration. Everything is kept as minimal as it's possible.
License
MIT