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

common-types

Package Overview
Dependencies
Maintainers
1
Versions
308
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

common-types - npm Package Compare versions

Comparing version 1.28.1 to 1.28.2

71

dist/cjs/tsconfig.d.ts

@@ -42,2 +42,3 @@ /**

compilerOptions?: Record<string, unknown> & {
allowJs?: boolean;
alwaysStrict?: boolean;

@@ -74,4 +75,24 @@ /**

composite?: boolean;
/**
* Output compiler performance information after building.
* See more: https://www.typescriptlang.org/tsconfig#diagnostics
*/
diagnostics?: boolean;
/**
* Output compiler performance information after building.
* See more: https://www.typescriptlang.org/tsconfig#diagnostics
*/
extendedDiagnostics?: boolean;
/**
* Differentiate between undefined and not present when type checking.
* See more: https://www.typescriptlang.org/tsconfig#exactOptionalPropertyTypes
* Default value: "profile.cpuprofile"
*/
generateCpuProfile?: string | "profile.cpuprofile";
/**
* Differentiate between undefined and not present when type checking.
* See more: https://www.typescriptlang.org/tsconfig#exactOptionalPropertyTypes
*/
exactOptionalPropertyTypes?: boolean;
/**
* Ensure that each file can be safely transpiled without relying on other imports.

@@ -103,7 +124,57 @@ * See more: https://www.typescriptlang.org/tsconfig#isolatedModules

declaration?: boolean;
/**
* Specify the output directory for generated declaration files.
* See more: https://www.typescriptlang.org/tsconfig#declarationDir
*/
declarationDir?: string;
/**
* Create sourcemaps for d.ts files.
* See more: https://www.typescriptlang.org/tsconfig#declarationMap
*/
declarationMap?: boolean;
/**
* Enable incremental compilation. Requires TypeScript version 3.4 or later.
*/
incremental?: boolean;
/**
* Skip type checking all .d.ts files.
* See more: https://www.typescriptlang.org/tsconfig#skipLibCheck
*/
skipLibCheck?: boolean;
/**
* Enable error reporting when a local variables aren't read.
* See more: https://www.typescriptlang.org/tsconfig#noUnusedLocals
*/
noUnusedLocals?: boolean;
/**
* Disable generating custom helper functions like __extends in compiled output.
* See more: https://www.typescriptlang.org/tsconfig#noEmitHelpers
*/
noEmitHelpers?: boolean;
/**
* Disable truncating types in error messages.
* See more: https://www.typescriptlang.org/tsconfig#noErrorTruncation
*/
noErrorTruncation?: boolean;
/**
* Enable error reporting for fallthrough cases in switch statements.
* See more: https://www.typescriptlang.org/tsconfig#noFallthroughCasesInSwitch
*/
noFallthroughCasesInSwitch?: boolean;
/**
* Ensure overriding members in derived classes are marked with an override modifier.
* See more: https://www.typescriptlang.org/tsconfig#noImplicitOverride
*/
noImplicitOverride?: boolean;
/**
* Enable error reporting for codepaths that do not explicitly return in a function.
* See more: https://www.typescriptlang.org/tsconfig#noImplicitReturns
*/
noImplicitReturns?: boolean;
/**
* Enable error reporting when this is given the type any.
* See more: https://www.typescriptlang.org/tsconfig#noImplicitThis
*/
noImplicitThis?: boolean;
/**
* Disable strict checking of generic signatures in function types.

@@ -110,0 +181,0 @@ * See more: https://www.typescriptlang.org/tsconfig#noStrictGenericChecks

@@ -42,2 +42,3 @@ /**

compilerOptions?: Record<string, unknown> & {
allowJs?: boolean;
alwaysStrict?: boolean;

@@ -74,4 +75,24 @@ /**

composite?: boolean;
/**
* Output compiler performance information after building.
* See more: https://www.typescriptlang.org/tsconfig#diagnostics
*/
diagnostics?: boolean;
/**
* Output compiler performance information after building.
* See more: https://www.typescriptlang.org/tsconfig#diagnostics
*/
extendedDiagnostics?: boolean;
/**
* Differentiate between undefined and not present when type checking.
* See more: https://www.typescriptlang.org/tsconfig#exactOptionalPropertyTypes
* Default value: "profile.cpuprofile"
*/
generateCpuProfile?: string | "profile.cpuprofile";
/**
* Differentiate between undefined and not present when type checking.
* See more: https://www.typescriptlang.org/tsconfig#exactOptionalPropertyTypes
*/
exactOptionalPropertyTypes?: boolean;
/**
* Ensure that each file can be safely transpiled without relying on other imports.

@@ -103,7 +124,57 @@ * See more: https://www.typescriptlang.org/tsconfig#isolatedModules

declaration?: boolean;
/**
* Specify the output directory for generated declaration files.
* See more: https://www.typescriptlang.org/tsconfig#declarationDir
*/
declarationDir?: string;
/**
* Create sourcemaps for d.ts files.
* See more: https://www.typescriptlang.org/tsconfig#declarationMap
*/
declarationMap?: boolean;
/**
* Enable incremental compilation. Requires TypeScript version 3.4 or later.
*/
incremental?: boolean;
/**
* Skip type checking all .d.ts files.
* See more: https://www.typescriptlang.org/tsconfig#skipLibCheck
*/
skipLibCheck?: boolean;
/**
* Enable error reporting when a local variables aren't read.
* See more: https://www.typescriptlang.org/tsconfig#noUnusedLocals
*/
noUnusedLocals?: boolean;
/**
* Disable generating custom helper functions like __extends in compiled output.
* See more: https://www.typescriptlang.org/tsconfig#noEmitHelpers
*/
noEmitHelpers?: boolean;
/**
* Disable truncating types in error messages.
* See more: https://www.typescriptlang.org/tsconfig#noErrorTruncation
*/
noErrorTruncation?: boolean;
/**
* Enable error reporting for fallthrough cases in switch statements.
* See more: https://www.typescriptlang.org/tsconfig#noFallthroughCasesInSwitch
*/
noFallthroughCasesInSwitch?: boolean;
/**
* Ensure overriding members in derived classes are marked with an override modifier.
* See more: https://www.typescriptlang.org/tsconfig#noImplicitOverride
*/
noImplicitOverride?: boolean;
/**
* Enable error reporting for codepaths that do not explicitly return in a function.
* See more: https://www.typescriptlang.org/tsconfig#noImplicitReturns
*/
noImplicitReturns?: boolean;
/**
* Enable error reporting when this is given the type any.
* See more: https://www.typescriptlang.org/tsconfig#noImplicitThis
*/
noImplicitThis?: boolean;
/**
* Disable strict checking of generic signatures in function types.

@@ -110,0 +181,0 @@ * See more: https://www.typescriptlang.org/tsconfig#noStrictGenericChecks

2

package.json
{
"name": "common-types",
"version": "1.28.1",
"version": "1.28.2",
"description": "Common Types for Typescript",

@@ -5,0 +5,0 @@ "repository": "https://github.com/lifegadget/common-types",

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