microsoft / microsoft/TypeScript
A flag to replace removed syntax with blank space
Personne n'a encore pris cette issue.
- Langage dominant
- Go
- Étoiles
- 111k
- Forks
- 14.3k
- Merge moyen
- 2 j 4 h
- PR mergées (30 j)
- 132
Description
🔍 Search Terms
Blank space
ErasableSyntax
Node.js Strip Types
Type Stripping
✅ Viability Checklist
- 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 isn't a request to add a new utility type: https://github.com/microsoft/TypeScript/wiki/No-New-Utility-Types
- This feature would agree with the rest of our Design Goals: https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals
⭐ Suggestion
A new flag to replace removed syntax during transpilation with blank space. Similarly to http://github.com/bloomberg/ts-blank-space and https://swc.rs/docs/references/wasm-typescript used in Node.js. This would remove the need of sourcemaps.
It can only be used in conjuction with --erasableSyntaxOnly
📃 Motivating Example
Example:
const foo: string = "Hello World";
becomes:
const foo = "Hello World";
💻 Use Cases
- What do you want to use this for?
Remove the need of sourcemaps after transpilation. - What shortcomings exist with current approaches?
None other than only a subset of syntax defined by an existing flag can be stripped. - What workarounds are you using in the meantime?
swc and tsblankspace
Guide de contribution
Ouvrir le guide de contribution
Par où commencer
- Lisez l'issue en entier, puis le guide de contribution du projet.
- Signalez en commentaire que vous la prenez — cela évite que deux personnes fassent le même travail.
- Forkez le dépôt et travaillez sur une branche.
- Ouvrez une pull request qui référence le numéro de l'issue.
Piste de recherche
L’issue ne nomme aucun fichier ni test du dépôt. Commencez par suivre l’option existante --erasableSyntaxOnly à travers le compilateur et comparez la sortie d’espaces demandée avec les approches citées de swc et ts-blank-space. Le travail est terminé lorsqu’un nouveau flag compatible remplace la syntaxe supprimée par des espaces et est limité à la syntaxe pouvant être supprimée.
Rédigé par le modèle d'indexation à partir du texte de l'issue.
Évaluation
- Stack technique
- typescript
- Domaine
- compilers
- Type d'issue
- Fonctionnalité
- Difficulté
- 5/5
- Temps estimé
- Plus d'une semaine
- Activité
- À l'abandon
- Clarté
- Plutôt claire
- Accessibilité débutants
- 28/100