We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent becb1fe commit 843f353Copy full SHA for 843f353
src/WebApiToTypeScript/Config/Config.cs
@@ -60,6 +60,21 @@ public class Config
60
public List<InterfaceMatch> InterfaceMatches { get; set; }
61
= new List<InterfaceMatch>();
62
63
+ public bool GenerateViews { get; set; }
64
+ = true;
65
+
66
+ public string ViewsSourceDirectory { get; set; }
67
+ = "Views";
68
69
+ public string ViewsOutputDirectory { get; set; }
70
71
72
+ public string ViewsFileName { get; set; }
73
+ = "Views.ts";
74
75
+ public string ViewsNamespace { get; set; }
76
77
78
public bool ScanOtherModules { get; set; }
79
= true;
80
0 commit comments