Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 992 Bytes

README.md

File metadata and controls

56 lines (35 loc) · 992 Bytes

Config

Pre-requisites

Install dependencies for the workspace

yarn install

Quick Start Guide

All commands below need to be run in the context of the config package where this README is located. Read more about context here.

Running in dev mode:

yarn dev

Building to ./dist directory with javascript output:

yarn build

Running all tests:

yarn test

Running changed tests in watch mode:

yarn test:watch

Linting:

yarn lint

Typechecking:

yarn typecheck

About

This package contains the configuration class that can be used to create a new configuration object that is then passed into the Typescript SDK when an external consumer initializes it. It also contains the configuration types, enums, utility functions that are used to assist with the setup of this configuration object.

Read more about the config package here