2.0.2 • Published 6 months ago

@rcsf/tsconfig v2.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

@rcsf/tsconfig

Shared TypeScript config for Rigby Capital Solution Factory projects

Install

npm install --save-dev @rcsf/tsconfig

This config requires TypeScript 5 or later.

Usage

tsconfig.json

{
	"extends": "@rcsf/tsconfig",
	"compilerOptions": {
		"outDir": "dist"
	}
}

When you are targeting a higher version of Node.js, check the relevant ECMAScript version and add it as target:

{
	"extends": "@rcsf/tsconfig",
	"compilerOptions": {
		"outDir": "dist",
		"target": "ES2023"
	}
}

Original work

This module is a shameless rip-off from Sindre Horsus awesome work.