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" + ] }