mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-24 18:47:30 +00:00
14 lines
385 B
C#
14 lines
385 B
C#
namespace Microsoft.AspNetCore.NodeServices
|
|
{
|
|
public class NodeServicesOptions
|
|
{
|
|
public NodeServicesOptions()
|
|
{
|
|
HostingModel = Configuration.DefaultNodeHostingModel;
|
|
}
|
|
|
|
public NodeHostingModel HostingModel { get; set; }
|
|
public string ProjectPath { get; set; }
|
|
public string[] WatchFileExtensions { get; set; }
|
|
}
|
|
} |