A package used to configure your pkg-tools usage
This package is meant to be used in tandem with other pkg-tools packages. It provides a function defineConfig
for defining your pkg-tools configuration.
# w/ pnpm
pnpm add -D @pkg-tools/config
# w/ yarn
yarn add -D @pkg-tools/config
# w/ npm
npm install -D @pkg-tools/config
Define a pkg.config.ts
in the root of your package and add the following.
import { defineConfig } from '@pkg-tools/config';
export default defineConfig({
config: {
directory: './dist',
},
});