### Summary I have a project that contains a minimal tsconfig.json with 'strict' enabled. ```json { "extends": "expo/tsconfig.base", "compilerOptions": { "strict": true } } ``` This currently gives errors like this:  Feels weird to me that libraries are included in type checks. Is that correct? ### Minimal reproducible example Just set your ts compiler to 'strict'. Like this: ```json { "extends": "expo/tsconfig.base", "compilerOptions": { "strict": true } } ```