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

后端 未结 6 1765
日久生厌
日久生厌 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:33

    In addition to A. Tim's answer there are times when even that doesn't work, so you need to:

    1. Rewrite the import string, using the intellisense. Sometimes this fixes the issue
    2. Restart VS Code

提交回复
热议问题