Sniplee Config provides standardized configuration packages for TypeScript, Biome, and more.
Install sniplee-config
using your preferred package manager. This package includes configurations for a variety of tools commonly used in our open-source projects.
npm install sniplee-config
pnpm add sniplee-config
yarn add sniplee-config
After installing sniplee-config, extend your project’s configuration files by referencing the desired presets. Use the following convention to extend configurations:
sniplee-config/<config-name>
Checkout Available Configurations for config-name
.
This package includes the following configurations:
To extend the TypeScript configuration in your tsconfig.json
{
"extends": ["sniplee-config/typescript"],
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"
}
}