From 36cb99bdfdf77d400987e91aa3facf623e24d678 Mon Sep 17 00:00:00 2001 From: Ivan Kerin Date: Tue, 2 Apr 2019 15:47:08 +0300 Subject: [PATCH] Fix test --- types/stream-mock/tsconfig.json | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/types/stream-mock/tsconfig.json b/types/stream-mock/tsconfig.json index 3e46832d3e..7939a34354 100644 --- a/types/stream-mock/tsconfig.json +++ b/types/stream-mock/tsconfig.json @@ -1,22 +1,16 @@ { "compilerOptions": { "module": "commonjs", - "lib": [ - "es6" - ], + "lib": ["es6"], "noImplicitAny": true, "noImplicitThis": true, "strictNullChecks": true, + "strictFunctionTypes": true, "baseUrl": "../", - "typeRoots": [ - "../" - ], + "typeRoots": ["../"], "types": [], "noEmit": true, "forceConsistentCasingInFileNames": true }, - "files": [ - "index.d.ts", - "stream-mock-tests.ts" - ] + "files": ["index.d.ts", "stream-mock-tests.ts"] }