0.2.2 • Published 1 year ago

@mvllow/tsconfig v0.2.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

tsconfig

Shared TypeScript config for my projects

Install

npm install --save-dev @mvllow/tsconfig

Usage

tsconfig.json

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

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

{
	"extends": "@mvllow/tsconfig",
	"compilerOptions": {
		"outDir": "dist",
		"target": "ES2021"
	}
}

Inspired by @sindresorhus