ignore eslint error: 'import' and 'export' may only appear at the top level

前端 未结 3 1015
-上瘾入骨i
-上瘾入骨i 2020-12-01 15:50

Is it possible to deactivate this error in eslint?

Parsing error: \'import\' and \'export\' may only appear at the top level
3条回答
  •  悲哀的现实
    2020-12-01 16:23

    Support for dynamic import has been added in eslint 6.2.

    You need to set ecmaVersion to 11 (or 2020) though.

    "parserOptions": {
        "ecmaVersion": 11
        ...
    }
    

    You can test that in their online demo.

提交回复
热议问题