0.1.0 • Published 1 year ago

@wp-blocks/tsconfig v0.1.0

Weekly downloads
-
License
GPL-2.0-or-later
Repository
github
Last release
1 year ago

tsconfig

Shared TypeScript config for @wp-block projects

Install

npm install --save-dev @wp-block/tsconfig

This config requires TypeScript 4.9 or later.

Usage

tsconfig.json

{
	"extends": "@wp-block/tsconfig",
	"compilerOptions": {
		"outDir": "build"
	},
  "include": ["src"]
}

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

{
	"extends": "@wp-block/tsconfig",
	"compilerOptions": {
		"outDir": "build",
		"target": "ES2021"
	}
}