From ccdbfc56c79c3e6adfae6d468e2e621476a2606d Mon Sep 17 00:00:00 2001 From: bendtherules Date: Sat, 11 Jan 2020 13:37:22 +0530 Subject: [PATCH] Readme - Add accessing compiler api through Deno --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b667706..dd09e52 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@ TSC = Typescript compiler 4. [Typescript Transformer Handbook](https://github.com/madou/typescript-transformer-handbook) - Lots of links and examples on how to write custom transformer. More of complete working examples, less theory. Same techniques apply for using TSC api directly. +5. [Compiler API through Deno](https://deno.land/std/manual.md#compiler-api) - Deno is a new secure runtime for JavaScript and TypeScript. It allows runtime access to the built in TypeScript compiler. + ## Wrappers and utils 1. [ts-morph](https://github.com/dsherret/ts-morph) - Easier and nicer abstraction layer on top of TS internals. Exposes underlying constructs for advanced usecases.