1.1.2 • Published 3 years ago

tscripts v1.1.2

Weekly downloads
223
License
MIT
Repository
github
Last release
3 years ago

tscripts

Description

Centralized pluggable config for your JS/TS library. This library bundles all the necessary configurations and dependencies so you can focus on the code.

Usage

yarn add --dev tscripts

Editor support steps

Add a root tsconfig.json:

{
  "extends": "tscripts/config/tsconfig.json",
  "include": ["src"]
}

Add a root babel.config.js:

module.exports = require('tscripts/config/babel.config.js');

Add a root .prettierrc.js

module.exports = require('tscripts/config/prettier.config.js');

Add a root .eslintrc.js:

module.exports = require('tscripts/config/eslint.config.js');