0.4.5 • Published 4 years ago

@warungpintar/warpin-scripts v0.4.5

Weekly downloads
5
License
MIT
Repository
-
Last release
4 years ago

warpin-scripts

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 @warungpintar/warpin-scripts

Editor support steps

Add a root tsconfig.json:

{
  "extends": "@warungpintar/warpin-scripts/config/tsconfig.json",
  "include": ["src"]
}

Add a root babel.config.js:

module.exports = require('@warungpintar/warpin-scripts/config/babel.config.js');

Add a root .prettierrc.js

module.exports = require('@warungpintar/warpin-scripts/config/prettier.config.js');

Add a root .eslintrc.js:

module.exports = require('@warungpintar/warpin-scripts/config/eslint.config.js');