gulp-tsconfig-update
Advanced tools
Comparing version 1.0.8 to 1.0.9
@@ -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 = [ |
17
8586
218