Skip to content

official tsconfig used by osskit

License

Notifications You must be signed in to change notification settings

osskit/tsconfig

Repository files navigation

tsconfig

Official TypeScript config used by osskit

Install

yarn add --dev @osskit/tsconfig

This config requires TypeScript 4.7 or later.

Usage

tsconfig.json

{
	"extends": "@osskit/tsconfig",
	"compilerOptions": {
      		"outDir": "dist"
	},
    	"include": ["src/**/*"]
}

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

{
	"extends": "@osskit/tsconfig",
	"compilerOptions": {
      		"outDir": "dist",
      		"target": "ES2021"
	},
    	"include": ["src/**/*"]
}

About

official tsconfig used by osskit

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages