Skip to content

Latest commit

History

History
19 lines (14 loc) 路 522 Bytes

Types.md

File metadata and controls

19 lines (14 loc) 路 522 Bytes

Types

strictNullChecks

Whether to override the project's --strictNullChecks setting. If true, TypeStat will set strictNullChecks to true regardless of your tsconfig.json.

{
	"types": {
		"strictNullChecks": true
	}
}

This interacts with fixers in a few ways:

  • Type additions will now include null and/or undefined
  • Property Accesses will have !s added as needed