GitXplorerGitXplorer
S

type-config

public
20 stars
0 forks
5 issues

Commits

List of commits on branch main.
Verified
70e6c7aad3f799b0b4a3737a8f7026e3fa5f8a4f

Merge pull request #25 from Saul-Mirone/renovate/all

SSaul-Mirone committed 6 months ago
Verified
310ee512a4699c78e6baa2471be7305ae1d59747

Update dependency inquirer to v10

rrenovate[bot] committed 6 months ago
Verified
e74d815df95caaccc382ef0d7b7a50e3d3fd2ec8

Merge pull request #24 from Saul-Mirone/renovate/all

SSaul-Mirone committed a year ago
Verified
3b5008e4dff651bf8848c4d76462a76403a1ecd0

Update dependency commander to v12

rrenovate[bot] committed a year ago
Verified
ff8c37f573848985e37c74ad2afec9f98b4df901

Merge pull request #23 from Saul-Mirone/renovate/all

SSaul-Mirone committed 2 years ago
Verified
a6c3f34f91b6aa155eb9de121ae2947798af140b

Update dependency prettier to v3

rrenovate[bot] committed 2 years ago

README

The README file for this repository.

TypeConfig

Motivation

Typescript is greet. However, every time we start a project with typescript (or migrate our old js project), we must choose compiler options for our project. Going through all the rules is really painful.

TypeConfig comes to make getting start with tsconfig really easier: just pick the style and enjoy.

Quick Start

npm install @type-config/cli -g

type-config init

Introduction

TypeConfig provide following receipes (Addition is welcome):

  • standard: Can be use in most projects. Use most type check rules, but not anything more(like no used something).
  • strict: Fit for packages. Use the most strict rules.
  • react: Fit for app using react.
  • easy: Fit for new starter or old javascript projects. Use the most loose rules, allow using javascript.

CLI usage:

# you can decide the name of the config file
type-config init [config-name.json]