Skip to content

Releases: smelukov/estel-estree-builder

v0.2.0

07 Jun 09:54
Compare
Choose a tag to compare
  • ts: export interfaces and types

Before:

type UnaryOperator = "-"|"+"|"!"|"~"|"typeof"|"void"|"delete";
interface SourceLocation {
    start: Position,
    end: Position,
    source?: string,
}

After:

export type UnaryOperator = "-"|"+"|"!"|"~"|"typeof"|"void"|"delete";
export interface SourceLocation {
    start: Position,
    end: Position,
    source?: string,
}

v0.1.0

15 Apr 23:21
Compare
Choose a tag to compare
  • estree spec parser
  • js and ts generators