New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-tsconfig-update

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-tsconfig-update - npm Package Compare versions

Comparing version 1.0.8 to 1.0.9

lib/_tsconfig.json

14

lib/Index.js

@@ -11,14 +11,4 @@ ///<reference path="../typings/bundle.d.ts"/>

function defaultTsConfig() {
return {
compilerOptions: {
target: "es5",
module: "commonjs",
declaration: false,
noImplicitAny: true,
removeComments: false,
noLib: false,
preserveConstEnums: false,
suppressImplicitAnyIndexErrors: false
}
};
var initiated = require("./_tsconfig.json");
return initiated;
}

@@ -25,0 +15,0 @@ var plugin = function (pluginOptions) {

{
"name": "gulp-tsconfig-update",
"version": "1.0.8",
"version": "1.0.9",
"description": "A gulp plugin to update `files` property in tsconfig.json by `gulp.src`.",
"main": "index.js",
"scripts": {
"setup": "npm install && dtsm --insight false install",
"build": "tsc",

@@ -8,0 +9,0 @@ "test": "tsc && cd test && gulp && mocha test.js"

@@ -18,14 +18,4 @@ ///<reference path="../typings/bundle.d.ts"/>

function defaultTsConfig(): model.TsConfig {
return <model.TsConfig>{
compilerOptions: {
target: "es5",
module: "commonjs",
declaration: false,
noImplicitAny: true,
removeComments: false,
noLib: false,
preserveConstEnums: false,
suppressImplicitAnyIndexErrors: false
}
}
let initiated: any = require("./_tsconfig.json");
return <model.TsConfig>initiated;
}

@@ -32,0 +22,0 @@

@@ -8,14 +8,3 @@ var assert = require("chai").assert;

var defaultConfig = {
compilerOptions: {
target: "es5",
module: "commonjs",
declaration: false,
noImplicitAny: true,
removeComments: false,
noLib: false,
preserveConstEnums: false,
suppressImplicitAnyIndexErrors: false
}
};
var defaultConfig = require("../lib/_tsconfig.json");

@@ -22,0 +11,0 @@ var files = [

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