尝试使用storm-react-diagrams制作一个简单的图表
不完全确定如何解决这个问题。
错误:
ERROR in ./src/diagram.jsx
Module build failed: SyntaxError: Unexpected token, expected , (31:9)
29 | // link the ports
30 | let link1 = port1.link(port2);
> 31 | (link1 as DefaultLinkModel).addLabel("Hello World!");
| ^
32 |
33 | //4) add the models to the root graph
34 | model.addAll(node1, node2, link1);
diagram.jsx
和这个完全一样
我在这里错过了某种花哨的 es6 语法还是什么?
这就是我的webpack.config 的样子。