TypeScript exports is not defined

后端 未结 6 1649
攒了一身酷
攒了一身酷 2020-12-13 08:45

I\'m trying to use export and import but it not working I get an error

Here is my code HTML :




    <         


        
6条回答
  •  有刺的猬
    2020-12-13 09:20

    You have a couple of options:

    Option 1: Use a module loader like Webpack, Browserify, etc.

    Option 2: If you just want to compile *.ts to *.js without any module imports or exports, set compilerOptions.module to "none" in your tsconfig.json. Note that you won't be able to export/import modules when you set compilerOptions.module to "none".

提交回复
热议问题