microsoft / microsoft/TypeScript

A flag to replace removed syntax with blank space

Open
#61,410 0 comments 15 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Awaiting More Feedback Suggestion
Dominant language
Go
Stars
111k
Forks
14.3k
Avg merge
2d 4h
Merged PRs (30d)
132

Description

🔍 Search Terms

Blank space
ErasableSyntax
Node.js Strip Types
Type Stripping

✅ Viability Checklist
⭐ 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
  1. What do you want to use this for?
    Remove the need of sourcemaps after transpilation.
  2. What shortcomings exist with current approaches?
    None other than only a subset of syntax defined by an existing flag can be stripped.
  3. What workarounds are you using in the meantime?
    swc and tsblankspace

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

The issue names no repository files or tests. Start by tracing the existing --erasableSyntaxOnly option through the compiler and compare the requested blank-space output with the cited swc and ts-blank-space approaches. Done means a new compatible flag replaces removed syntax with spaces and is restricted to erasable syntax.

Written by the indexing model from the issue text.

Assessment

Tech stack
typescript
Domain
compilers
Issue type
Feature
Difficulty
5/5
Estimated time
Over a week
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
28/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.