function createInspectionSettings()

in server/src/server.ts [235:243]


function createInspectionSettings(library: PQLS.Library.ILibrary): PQLS.InspectionSettings {
    return PQLS.InspectionUtils.createInspectionSettings(
        {
            ...PQP.DefaultSettings,
            locale: serverSettings.locale,
        },
        library.externalTypeResolver,
    );
}