🔧 Fixing tsconfig

This commit is contained in:
C-3PO 2018-06-21 15:50:25 +02:00
parent 6baaada419
commit c051139c0f
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
2 changed files with 1 additions and 2 deletions

View file

@ -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;

View file

@ -1,6 +1,5 @@
{
"compilerOptions": {
//settings:
"baseUrl": ".",
"inlineSourceMap": true,
"module": "commonjs",