Skip to content

ligershark/WebOptimizer.TypeScript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A TypeScript compiler for ASP.NET Core

Build status NuGet

This package compiles TypeScript, ES6 and JSX files into ES5 by hooking into the LigerShark.WebOptimizer pipeline.

Usage

You can reference any TypeScript file directly in the browser and a compiled ES5 JavaScript document will be served. To set that up, do this:

services.AddWebOptimizer(pipeline =>
{
    pipeline.CompileTypeScriptFiles();
});

Or if you just want to parse specific TypeScript files, do this:

services.AddWebOptimizer(pipeline =>
{
    pipeline.CompileTypeScriptFiles("/path/file1.ts", "/path/file2.ts");
});

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published