D3.js版本3是否支持es6/es2015

D3.js版本3是否支持es6/es2015,d3.js,ecmascript-6,D3.js,Ecmascript 6,D3版本3是否支持es2015/es6?使用es2015和angular时d3工作正常,但升级到angular 8时,d3开始给我一个运行时错误。“文档未定义” 这是d3运行时错误,还是Typescript编译错误?d3运行时错误@Bergia很多人说问题的发生是因为d3不支持es6。为什么我没有得到angular 7的问题?这家伙也有同样的问题是d3运行时错误,还是Typescript编译错误?d3运行时错误@Bergia很多人都说问题的发生是因为d3不支持es6。为什么我没有和angular

D3版本3是否支持es2015/es6?使用es2015和angular时d3工作正常,但升级到angular 8时,d3开始给我一个运行时错误。“文档未定义”


这是d3运行时错误,还是Typescript编译错误?d3运行时错误@Bergia很多人说问题的发生是因为d3不支持es6。为什么我没有得到angular 7的问题?这家伙也有同样的问题是d3运行时错误,还是Typescript编译错误?d3运行时错误@Bergia很多人都说问题的发生是因为d3不支持es6。为什么我没有和angular 7发生冲突这家伙也有同样的问题
        "d3": "3.5.17",
        "@angular/animations": "^8.0.2",
        "@angular/cdk": "^8.0.1",

{//tsconfig.json
  "compilerOptions": {
    "allowJs": true,
    "downlevelIteration": true,
    "target": "es5",
    "module": "esnext",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "lib": [
      "es2015",
      "es2017",
      "dom",
      "esnext.asynciterable" // Enable async generators. See https://stackoverflow.com/a/43694282/62694.
    ],