typescript-strictly-typed
Advanced tools
Comparing version 3.19.1 to 3.19.2
@@ -49,2 +49,3 @@ import { findConfig, getConfig, modifyJSON, saveConfig } from "./config-utils.js"; | ||
config.raw = modifyJSON(config.raw, ["compilerOptions", "noImplicitReturns"], true); | ||
config.raw = modifyJSON(config.raw, ["compilerOptions", "noPropertyAccessFromIndexSignature"], true); | ||
config.raw = modifyJSON(config.raw, ["compilerOptions", "noUncheckedIndexedAccess"], true); | ||
@@ -51,0 +52,0 @@ config.raw = modifyJSON(config.raw, ["compilerOptions", "useUnknownInCatchVariables"], true); |
{ | ||
"name": "typescript-strictly-typed", | ||
"version": "3.19.1", | ||
"version": "3.19.2", | ||
"description": "Enable configurations for strictly typed TypeScript, ESLint, and optionally Angular.", | ||
@@ -5,0 +5,0 @@ "funding": { |
import { checkDependencyVersion, findConfig, getConfig, modifyJSON, saveConfig } from "./config-utils.js"; | ||
/** | ||
* Enable the following TypeScript compiler options: | ||
* - `strict` | ||
* - `noFallthroughCasesInSwitch` | ||
* - `noImplicitReturns` | ||
* - `forceConsistentCasingInFileNames` | ||
* - `noImplicitOverride` | ||
* - `exactOptionalPropertyTypes` | ||
* Enable strict TypeScript compiler options | ||
* {@link https://www.typescriptlang.org/docs/handbook/compiler-options.html} | ||
@@ -11,0 +5,0 @@ * |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40328
849