- fix for .d.ts.map extension #97

This commit is contained in:
Eugene Zolenko 2018-07-17 15:36:39 -06:00
parent 433c8fad6b
commit a345bbc11a
5 changed files with 5 additions and 5 deletions

View File

@ -20191,7 +20191,7 @@ function typescript(options) {
};
lodash_2(declarations, ({ type, map }, key) => {
writeDeclaration(key, ".d.ts", type);
writeDeclaration(key, ".map.d.ts", map);
writeDeclaration(key, ".d.ts.map", map);
});
}
},

File diff suppressed because one or more lines are too long

View File

@ -20187,7 +20187,7 @@ function typescript(options) {
};
lodash_2(declarations, ({ type, map }, key) => {
writeDeclaration(key, ".d.ts", type);
writeDeclaration(key, ".map.d.ts", map);
writeDeclaration(key, ".d.ts.map", map);
});
}
},

File diff suppressed because one or more lines are too long

View File

@ -339,7 +339,7 @@ export default function typescript(options?: Partial<IOptions>)
_.each(declarations, ({ type, map }, key) =>
{
writeDeclaration(key, ".d.ts", type);
writeDeclaration(key, ".map.d.ts", map);
writeDeclaration(key, ".d.ts.map", map);
});
}
},