Avoid huge .d.ts files

pull/2748/head
Alex Dima 5 years ago
parent cdf8b88e35
commit 11abbeebb2
No known key found for this signature in database
GPG Key ID: 6E58D7B045760DA0

@ -170,7 +170,7 @@ function importLibs() {
for (let i = result.length - 1; i >= 0; i--) {
if (result[i].deps.length === 0) {
// emit this node
strResult += `\nexport const ${result[i].name} = ${result[i].output};\n`;
strResult += `\nexport const ${result[i].name}: string = ${result[i].output};\n`;
// mark dep as resolved
for (let j = 0; j < result.length; j++) {

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save