diff --git a/types/rtl-detect/tsconfig.json b/types/rtl-detect/tsconfig.json index b0b27b65f9..1bd8ca915d 100644 --- a/types/rtl-detect/tsconfig.json +++ b/types/rtl-detect/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", - "rtl-detect-tests.ts" - ] + "files": ["index.d.ts", "rtl-detect-tests.ts"] }