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.2.2 to 0.2.3

6

CHANGELOG.md
# Changelog
## v0.2.3
- Add noImplicitAny option (#2)
## v0.2.2

@@ -13,3 +17,3 @@

- Add new configuration options
- Add new configuration options (#1)
- target, module, sourceMap, instance

@@ -16,0 +20,0 @@ - sourceMap default changed from `true` to `false`

3

index.js

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

module: options.module == "AMD" ? 2 /* AMD */ : 1 /* CommonJS */,
sourceMap: !!options.sourceMap
sourceMap: !!options.sourceMap,
noImplicitAny: !!options.noImplicitAny
};

@@ -38,0 +39,0 @@ var files = {};

{
"name": "ts-loader",
"version": "0.2.2",
"version": "0.2.3",
"description": "TypeScript loader for webpack",

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

@@ -47,2 +47,6 @@ # TypeScript loader for webpack

##### noImplicitAny *(boolean) (default=false)*
Specify whether or not TypeScript will allow inferring the `any` type.
##### instance *(string)*

@@ -49,0 +53,0 @@

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