JsModelConfig
Currently, you only have to define 3 properties:
- string JsNamespace
- bool UseCache
- bool ScanJsModels
If you like Fluent-Interfaces, you can create your instance of JsModelConfig with the FluentInterface.
Here's an example usage:
new JsModelFluentConfig()
.UseDefaultNamespace("app.models")
.ScanForViewModels()
.AndCacheOutput()