Socket
Socket
Sign inDemoInstall

ts-loader

Package Overview
Dependencies
Maintainers
1
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 0.4.2 to 0.4.3

4

CHANGELOG.md
# Changelog
## v0.4.3
- Fix error locations to be 1-based instead of 0-based (#18)
## v0.4.2

@@ -4,0 +8,0 @@

2

index.js

@@ -23,3 +23,3 @@ ///<reference path="node_modules/typescript/bin/typescript.d.ts" />

var lineChar = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start);
outputFn(" " + diagnostic.file.fileName.blue + " (" + lineChar.line.toString().cyan + "," + lineChar.character.toString().cyan + "): " + messageText.red);
outputFn(" " + diagnostic.file.fileName.blue + " (" + (lineChar.line + 1).toString().cyan + "," + (lineChar.character + 1).toString().cyan + "): " + messageText.red);
}

@@ -26,0 +26,0 @@ else {

{
"name": "ts-loader",
"version": "0.4.2",
"version": "0.4.3",
"description": "TypeScript loader for webpack",

@@ -5,0 +5,0 @@ "main": "index.js",

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