microsoft / microsoft/TypeScript
Enable `noExplicitAny` in `./tsconfig.json`.
Nobody has claimed this yet.
- Dominant language
- Go
- Stars
- 111k
- Forks
- 14.3k
- Avg merge
- 1d 19h
- Merged PRs (30d)
- 117
Description
⭐ Suggestion & 📃 Motivating Example & 💻 Use Cases
The following .js code, in project with a ./tsconfig.json that has allowJs:true, checkJs:true,noImplicitAny:true, does not lint error:
const mySet = new Set;
const myMap = new Map;
const myWeakMap = new WeakMap;
const myArray = [];
const myObj = {};
It would be nice to lint error for those cases when noExplicitAny:true is used.
🔍 Search Terms
noExplicitAny- TypeScript compiler API
./tsconfig.jsonallowJscheckJs
✅ Viability Checklist
My suggestion meets these guidelines:
- This wouldn't be a breaking change in existing TypeScript/JavaScript code
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, new syntax sugar for JS, etc.)
- This feature would agree with the rest of TypeScript's Design Goals.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by tracing the TypeScript compiler API handling for JavaScript files when allowJs, checkJs, and noImplicitAny are enabled, then determine where noExplicitAny should report the shown empty Set, Map, WeakMap, array, and object cases. Done means those examples produce lint errors when noExplicitAny is enabled without changing emitted JavaScript; add or update relevant compiler tests if the project’s existing test coverage identifies a location.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript, typescript
- Domain
- compilers
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100