gflib.ts: generate source map, which is helpful for debugging

This commit is contained in:
John J. Camilleri
2019-06-13 13:53:58 +02:00
parent d252cfd610
commit bc61f8c191
3 changed files with 4 additions and 1 deletions

View File

@@ -1160,3 +1160,4 @@ if (!String.prototype.includes) {
} }
}); });
} }
//# sourceMappingURL=gflib.js.map

File diff suppressed because one or more lines are too long

View File

@@ -5,7 +5,8 @@
"strict": true, "strict": true,
"noImplicitAny": true, "noImplicitAny": true,
"removeComments": true, "removeComments": true,
"outDir": "js" "outDir": "js",
"sourceMap": true
}, },
"compileOnSave": true "compileOnSave": true
} }