@typescript-go/api
v0.0.2
Published
Node.js API for https://github.com/microsoft/typescript-go project
Downloads
26
Readme
@typescript-go/api
This project is an experimental Node.js binding for https://github.com/microsoft/typescript-go.
🚀 Help me to become a full-time open-source developer by sponsoring me on Github
We have only few api at this moment:
Transform code
import { transform } from '@typescript-go/api'
transform('const a: number = 1;', '/absolute/path/a.ts')
// 'const a = 1;\n'TypeCheck a project
import { runProject } from '@typescript-go/api'
// equivalent to `tsc -p ./rust/tsconfig.json`
runProject('./rust/tsconfig.json')