You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Item 83: Don't Consider Migration Complete Until You Enable noImplicitAny
Things to Remember
Don't consider your TypeScript migration done until you adopt noImplicitAny. Loose type checking can mask real mistakes in type declarations.
Fix type errors gradually before enforcing noImplicitAny. Give your team a chance to get comfortable with TypeScript before adopting stricter checks.## Code Samples
getRanges(){for(constrofthis.indices){constlow=r[0];// ~~~~ Element implicitly has an 'any' type because// type 'Number' has no index signatureconsthigh=r[1];// ~~~~ Element implicitly has an 'any' type because// type 'Number' has no index signature// ...}}