Estou recebendo o seguinte erro ao tentar criar o novo selector na classe photo.component Erro na propriedade:
TSLint: The selector of the component "PhotoComponent" should have prefix "app" (https://angular.io/styleguide#style-02-07) (component-selector)
onde o mesmo solicita que eu altera o arquivo TsLint:
{
    "extends": "../tslint.json",
    "rules": {
        "directive-selector": [
            true,
            "attribute",
            "app",
            "camelCase"
        ],
        "component-selector": [
            true,
            "element",
            "app",
            "kebab-case"
        ]
    }
}
E o seguinte erro é apresentado no terminal
ERROR in src/app/photo/photo.component.ts(3,2): error TS2560: Value of type 'typeof PhotoComponent' has no properties in common with type 'Component'. Did you mean to call it? 
            