From 3ca57c4672f85a2d480160cfdd27c2bdfad930ec Mon Sep 17 00:00:00 2001 From: Wpapsco Date: Wed, 27 Feb 2019 21:42:18 -0800 Subject: [PATCH] added 'strictFunctionTypes: true' to tsconfig.json as recommended --- types/tmi.js/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/types/tmi.js/tsconfig.json b/types/tmi.js/tsconfig.json index da2062714c..b8bbb67694 100644 --- a/types/tmi.js/tsconfig.json +++ b/types/tmi.js/tsconfig.json @@ -9,6 +9,7 @@ "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ "strictNullChecks": true, /* Enable strict null checks. */ "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ + "strictFunctionTypes": true, "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ } } \ No newline at end of file