typescript icon indicating copy to clipboard operation
typescript copied to clipboard

Exercism exercises in TypeScript.

Results 129 typescript issues
Sort by recently updated
recently updated
newest added

I updated the instructions for the anagram exercise. So, it will be easy to understand about the problem.

Highlighting the required properties for passing the test, and added a footnote about that. Better instructions for people who don't know the game.

While working on #1072, I found this case where my otherwise passing solution would still allow mutation.

The exercise expects the student to incorporate some mutability/modification guarantees. `Object.freeze` is one of the ways the goal can be achieved in javascript - it removes mutating methods like `.push`...

Bumps [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest) and [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest). These dependencies needed to be updated together. Updates `jest` from 27.5.1 to 28.1.1 Release notes Sourced from jest's releases. v28.1.1 Features [jest] Expose Config type (#12848)...

dependencies
javascript

The test-cases of `rational-numbers` are almost all of the following form: ```javascript const expected = new Rational(7, 6) expect(new Rational(1, 2).add(new Rational(2, 3))).toEqual(expected) ``` The problem with this is, that...

The recent mass PR (#1015) that intended to fix `exercism.io` to `exercism.org` blindly made me check the links across the PRs and I found a broken one in this repositories...

Bumps [chalk](https://github.com/chalk/chalk) from 5.0.0 to 5.0.1. Release notes Sourced from chalk's releases. v5.0.1 Add main field to package.json for backwards compatibility with some developer tools 85f7e96 https://github.com/chalk/chalk/compare/v5.0.0...v5.0.1 Commits bccde97 5.0.1...

dependencies
javascript

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies
javascript