microsoft / microsoft/TypeScript
A flag to replace removed syntax with blank space
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Go
- Estrellas
- 111k
- Forks
- 14.3k
- Merge medio
- 2 d 4 h
- PR fusionados (30 d)
- 132
Descripción
🔍 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
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
El issue no menciona archivos ni pruebas del repositorio. Empieza siguiendo la opción existente --erasableSyntaxOnly a través del compilador y compara la salida de espacios en blanco solicitada con los enfoques citados de swc y ts-blank-space. Se considera completado cuando un nuevo flag compatible reemplaza la sintaxis eliminada por espacios y está restringido a la sintaxis eliminable.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- typescript
- Área
- compilers
- Tipo de issue
- Nueva funcionalidad
- Dificultad
- 5/5
- Tiempo estimado
- Más de una semana
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 28/100