Socket
Socket
Sign inDemoInstall

ts-loader

Package Overview
Dependencies
Maintainers
3
Versions
165
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-loader - npm Package Compare versions

Comparing version 9.4.3 to 9.4.4

3

CHANGELOG.md
# Changelog
## 9.4.4
* [Bug fix: let users override skipLibCheck](https://github.com/TypeStrong/ts-loader/pull/1617) - thanks @haakonflatval-cognite
## 9.4.3

@@ -4,0 +7,0 @@ * [Bug fix: add config file as build dependency](https://github.com/TypeStrong/ts-loader/pull/1611) - thanks @alexander-akait

4

dist/compilerSetup.d.ts

@@ -10,3 +10,5 @@ import type * as typescript from 'typescript';

};
export declare function getCompilerOptions(configParseResult: typescript.ParsedCommandLine, compiler: typeof typescript): typescript.CompilerOptions;
export declare function getCompilerOptions(configParseResult: typescript.ParsedCommandLine, compiler: typeof typescript): {
skipLibCheck: boolean;
} & typescript.CompilerOptions;
//# sourceMappingURL=compilerSetup.d.ts.map

@@ -45,4 +45,4 @@ "use strict";

function getCompilerOptions(configParseResult, compiler) {
const compilerOptions = Object.assign({}, configParseResult.options, {
skipLibCheck: true,
const defaultOptions = { skipLibCheck: true };
const compilerOptions = Object.assign(defaultOptions, configParseResult.options, {
suppressOutputPathCheck: true, // This is why: https://github.com/Microsoft/TypeScript/issues/7363

@@ -49,0 +49,0 @@ });

@@ -10,3 +10,3 @@ "use strict";

LogLevel[LogLevel["ERROR"] = 3] = "ERROR";
})(LogLevel = exports.LogLevel || (exports.LogLevel = {}));
})(LogLevel || (exports.LogLevel = LogLevel = {}));
const stderrConsole = new console_1.Console(process.stderr);

@@ -13,0 +13,0 @@ const stdoutConsole = new console_1.Console(process.stdout);

{
"name": "ts-loader",
"version": "9.4.3",
"version": "9.4.4",
"description": "TypeScript loader for webpack",

@@ -96,3 +96,3 @@ "main": "index.js",

"rimraf": "^2.6.2",
"typescript": "^5.0.4",
"typescript": "^5.1.3",
"webpack": "^5.74.0",

@@ -99,0 +99,0 @@ "webpack-cli": "^4.10.0"

Sorry, the diff of this file is not supported yet

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