Stone.js API
    Preparing search index...

    Configuration for automatically loading modules during buildtime.

    Specifies glob patterns to identify modules for transpilation.

    interface InputConfig {
        all?: string;
        app?: string;
        mainCSS?: string;
        views?: string;
    }
    Index
    all?: string

    The input path pattern for the entire application.

    app?: string

    The input path pattern for the application modules expect views. We need to separate the rest of the application modules from the views For the lazy loading of views.

    mainCSS?: string

    The input path for the application Main CSS stylesheet.

    views?: string

    The input path pattern for only the application views. We need to separate views from the rest of the application modules For the lazy loading of views.