Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
9ad59704be | |||
29f3832d63 |
3
index.js
3
index.js
@ -172,7 +172,8 @@ var NpmtsCompile;
|
||||
.pipe(plugins.g.typescript({
|
||||
out: outputName,
|
||||
declaration: true,
|
||||
target: "ES5"
|
||||
target: "ES5",
|
||||
module: "commonjs"
|
||||
}));
|
||||
var stream = plugins.mergeStream([
|
||||
tsStream.dts.pipe(plugins.gulp.dest(outputDir)),
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "npmts",
|
||||
"version": "2.4.0",
|
||||
"version": "2.4.1",
|
||||
"description": "write npm modules with TypeScript",
|
||||
"main": "index.js",
|
||||
"typings": "./index.d.ts",
|
||||
|
@ -72,7 +72,8 @@ module NpmtsCompile {
|
||||
.pipe(plugins.g.typescript({
|
||||
out: outputName,
|
||||
declaration: true,
|
||||
target: "ES5"
|
||||
target: "ES5",
|
||||
module: "commonjs"
|
||||
}));
|
||||
var stream = plugins.mergeStream([
|
||||
tsStream.dts.pipe(plugins.gulp.dest(outputDir)),
|
||||
|
Reference in New Issue
Block a user