🔧 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[] = [];
|
||||
let totalLength = 0;
|
||||
response.on('data', (chunk) => {
|
||||
response.on('data', (chunk: Buffer) => {
|
||||
console.log(`BODY: ${chunk.length}`);
|
||||
chunkList.push(chunk);
|
||||
totalLength += chunk.length;
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
//settings:
|
||||
"baseUrl": ".",
|
||||
"inlineSourceMap": true,
|
||||
"module": "commonjs",
|
||||
|
|
Loading…
Reference in a new issue