CompilerFactory

A factory for creating a Compiler

abstract class CompilerFactory { abstract createCompiler(options?: CompilerOptions[]): Compiler }

方法

abstract createCompiler(options?: CompilerOptions[]): Compiler

参数

options

Type: CompilerOptions[].

可选. 默认值是 undefined.

返回值

Compiler