maheshsundaram / ts-notes

A collection of my Typescript patterns and experiments with a focus on type-level programming.
0 stars 0 forks source link

tooling #1

Open TC-mSundaram opened 3 years ago

TC-mSundaram commented 3 years ago

tsconfig

    "noUnusedLocals": false

eslintrc

  "rules": {
    "@typescript-eslint/no-unused-vars": "off"
  }

.prettierrc.yml -> .prettierrc

void.ts

@typescript-eslint/no-explicit-any
TC-mSundaram commented 3 years ago

https://stackoverflow.com/questions/63118405/how-to-fix-eslintrc-the-file-does-not-match-your-project-config

TC-mSundaram commented 3 years ago

https://stackoverflow.com/questions/54207173/classes-keyof-in-typescript

TC-mSundaram commented 3 years ago

https://github.com/Microsoft/TypeScript/issues/2225

https://github.com/Microsoft/TypeScript/issues/13573

class-interface merge

https://stackoverflow.com/a/13408029

intersection types

conditionals

maheshsundaram commented 3 years ago

https://stackoverflow.com/questions/54607400/typescript-remove-entries-from-tuple-type

TC-mSundaram commented 3 years ago

https://stackoverflow.com/questions/66410115/difference-between-variance-covaraince-contravariance-and-bivariance-in-typesc/66411491#66411491

TC-mSundaram commented 2 years ago

https://github.com/kkuchta/TSpell

TC-mSundaram commented 2 years ago

https://stackoverflow.com/questions/56415826/is-it-possible-to-precisely-type-invert-in-typescript

TC-mSundaram commented 2 years ago

https://casualdeveloper.net/post/2020-12-21-advanced-typescript-type-tricks/

https://engineering.tableau.com/really-advanced-typescript-types-c590eee59a12

https://medium.com/@AamuLumi/type-the-untypable-101-for-advanced-typings-in-typescript-f5ef986c5836

TC-mSundaram commented 2 years ago

https://github.com/EvolveYourMind/ts-lambda-calc/