🔧 Fixing tsconfig
This commit is contained in:
parent
6baaada419
commit
c051139c0f
2 changed files with 1 additions and 2 deletions
|
@ -18,7 +18,7 @@ export const getFileContents: () => Promise<Buffer> = () => new Promise((resolve
|
||||||
|
|
||||||
const chunkList: Buffer[] = [];
|
const chunkList: Buffer[] = [];
|
||||||
let totalLength = 0;
|
let totalLength = 0;
|
||||||
response.on('data', (chunk) => {
|
response.on('data', (chunk: Buffer) => {
|
||||||
console.log(`BODY: ${chunk.length}`);
|
console.log(`BODY: ${chunk.length}`);
|
||||||
chunkList.push(chunk);
|
chunkList.push(chunk);
|
||||||
totalLength += chunk.length;
|
totalLength += chunk.length;
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
//settings:
|
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"inlineSourceMap": true,
|
"inlineSourceMap": true,
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
|
|
Loading…
Reference in a new issue