tsconfig / bases

Hosts TSConfigs to extend in a TypeScript app, tuned to a particular runtime environment
MIT License
6.41k stars 240 forks source link

[CHORE] Naming inconsistency in configs #220

Closed ErtanTaner closed 1 year ago

ErtanTaner commented 1 year ago

Summary

Config bases have inconsistent naming conventions for same names.

Examples

Module

Node v18:

"module": "node16"

Node v19:

"module": "Node16"

dom

Nuxt:

"lib": [..., "DOM"]

Next:

"lib": [..., "dom"]

Final Point

As far as ı know, tsc doesn't care about the cases but while reading the repo, consistent cases going help us.