Typescript es6 import module “File is not a module error”

后端 未结 6 1764
日久生厌
日久生厌 2020-12-02 07:37

I am using typescript 1.6 with es6 modules syntax.

My files are:

test.ts:

module App {
  export class SomeClass {
    getNam         


        
6条回答
  •  误落风尘
    2020-12-02 08:13

    The file needs to add Component from core hence add the following import to the top

    import { Component } from '@angular/core';

提交回复
热议问题