Y
Hacker News
new
|
ask
|
show
|
jobs
by
chrisandchris
1526 days ago
Does Typescript even compile or is it transpile?
1 comments
WorldMaker
1526 days ago
Both. Type erasure is a transpilation process. Generating .d.ts and other type metadata files is a compilation process. (With conditional types alone the type checker is compiling a fully Turing complete mini-language.)
link