Quando eu tou tentando acessar minha página, está dando o seguinte erro: "Error: SyntaxError: Unexpected token < at eval () Evaluating http://localhost:3000/traceur Error loading http://localhost:3000/traceur Error loading http://localhost:3000/app/foto/foto.component.js as "./foto.component" from http://localhost:3000/app/foto/foto.module.js" no console. Pelo visual Studio Code eu recebo 2 erros, seguem os erros:
1º file: 'file:///home/haniel/Documentos/alurapic/client/app/foto/foto.component.js' severity: 'Error' message: 'Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option to remove this warning.' at: '10,14' source: 'js'
2º file: 'file:///home/haniel/Documentos/alurapic/client/app/foto/foto.module.ts' severity: 'Error' message: 'Module './foto.component' was resolved to '/home/haniel/Documentos/alurapic/client/app/foto/foto.component.js', but '--allowJs' is not set.' at: '2,33' source: 'ts'
Segue o código atual: foto.component.js
import { Component } from '@angular/core';
@Component({
selector: 'foto',
templateUrl: './app/foto/foto.component.html'
})
export class FotoComponent { }
Mais outro: foto.module.ts
import { NgModule } from '@angular/core';
import { FotoComponent } from './foto.component';
@NgModule({
declarations: [ FotoComponent ],
exports: [ FotoComponent ]
})
export class FotoModule { }
O que eu faço?!
Agradeço desde já!