在严格模式下使用const(Angular 2)

时间:2017-12-20 14:53:29

标签: node.js angular typescript

我的节点版本是v9.3.0,npm版本是5.5.1。 我正在尝试使用以下方法创建和运行示例项目:

ng new test;
ng serve -o;

angular cli成功编译程序,但我的浏览器页面为空白,控制台日志结果为:

  

Uncaught SyntaxError:在严格模式下使用const。

首先,我怎么能发现这个错误? 在这种情况下如何启用严格模式?

编辑:

{
  "compileOnSave": false,
  "compilerOptions": {
    "outDir": "./dist/out-tsc",
    "sourceMap": true,
    "declaration": false,
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "target": "es5",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2017",
      "dom"
    ]
  }
}

0 个答案:

没有答案