@reacture-io/tsconfig
v0.0.1
Published
A collection of TypeScript configuration files for consistent development across Reacture.
Readme
@faktion-com/tsconfig
A collection of TypeScript configuration files for consistent development across Faktion projects.
Overview
This package provides standardized TypeScript configurations that can be extended in your projects to ensure consistent compiler settings and development experience.
Installation
pnpm i --save-dev @faktion-com/tsconfigUsage
For Node.js projects
{
"extends": "@faktion-com/tsconfig/node.json"
}For React projects
{
"extends": "@faktion-com/tsconfig/react.json"
}For custom configurations
{
"extends": "@faktion-com/tsconfig/base.json",
"compilerOptions": {
// Your custom options here
}
}