1 | # ts-generator
|
2 |
|
3 | The missing piece for fully typesafe Typescript apps
|
4 |
|
5 | Generate Typescript typings for any kind of files (json, graphql queries, css modules).
|
6 |
|
7 | [](https://coveralls.io/github/krzkaczor/ts-gen?branch=master)
|
8 |
|
9 | ## Features:
|
10 |
|
11 | - plugin based architecture allowing one tool to handle all different "untyped" data (css modules, graphql queries,
|
12 | ethereum smartcontracts, json files) — think babel for types
|
13 | - unified config for all plugins
|
14 | - automatically prettifies output to match code style of the project
|
15 | - watch mode
|
16 |
|
17 | ## Example:
|
18 |
|
19 | - [generate types for simple JSON files](https://github.com/krzkaczor/ts-generator/blob/master/test/integration/ts-gen-plugins/dummy-json/index.ts)
|