From bc35e8b7960122ebc47ad4fd2e32aa2a91f53eda Mon Sep 17 00:00:00 2001 From: Ivan Kerin Date: Tue, 2 Apr 2019 15:33:50 +0300 Subject: [PATCH] Use dts-gen --- types/stream-mock/tsconfig.json | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/types/stream-mock/tsconfig.json b/types/stream-mock/tsconfig.json index 7939a34354..3e46832d3e 100644 --- a/types/stream-mock/tsconfig.json +++ b/types/stream-mock/tsconfig.json @@ -1,16 +1,22 @@ { "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" + ] }