Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tsconfig/strictest

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tsconfig/strictest

A base TSConfig for working with Strictest.

  • 2.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
184K
decreased by-15.12%
Maintainers
2
Weekly downloads
 
Created

What is @tsconfig/strictest?

@tsconfig/strictest is a TypeScript configuration package that provides the strictest possible settings for TypeScript projects. It is designed to enforce the highest level of type safety and code quality by enabling all strict type-checking options available in TypeScript.

What are @tsconfig/strictest's main functionalities?

Strict Type-Checking

Enables all strict type-checking options in TypeScript, ensuring that the code adheres to the highest standards of type safety.

{"compilerOptions":{"strict":true,"noImplicitAny":true,"strictNullChecks":true,"strictFunctionTypes":true,"strictBindCallApply":true,"strictPropertyInitialization":true,"noImplicitThis":true,"alwaysStrict":true}}

No Implicit Returns

Ensures that all functions have explicit return statements, preventing accidental undefined returns.

{"compilerOptions":{"noImplicitReturns":true}}

No Fallthrough Cases in Switch

Prevents fallthrough cases in switch statements, which can lead to unexpected behavior.

{"compilerOptions":{"noFallthroughCasesInSwitch":true}}

No Unused Locals and Parameters

Flags any unused local variables and parameters, helping to keep the codebase clean and maintainable.

{"compilerOptions":{"noUnusedLocals":true,"noUnusedParameters":true}}

Other packages similar to @tsconfig/strictest

Keywords

FAQs

Package last updated on 27 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc