-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does not compile in TypeScript with strict flag enabled #448
Comments
I added |
I test it with 2.6 and with 2.7-dev( |
I could reproduce and fix this now. |
I am still having the same issue with [email protected]. Here is the error saying:
Here is my tsconfig {
"compilerOptions": {
"target": "es5",
"lib": [ "es2015", "dom" ],
"module": "commonjs",
"declaration": true,
"outDir": "./lib",
"strict": true
},
"include": ["src"],
"exclude": ["node_modules", "**/__tests__/*"]
} |
@anidotnet thanks for reporting. |
Case
Issue
If try to compile a project with rxdb as dependency with strict flag enable, the TypeScript compiler complains about several implicit
any
types.Info
Code
Run the TS compiler
npx tsc
.The text was updated successfully, but these errors were encountered: