4

如何设置用 Dart 编写的 Web 应用程序的启动,就像在 Atom 中的 WebStorm 一样?

网络风暴

原子

在 Atom 中,他尝试运行自己的 Dart 脚本而不是 index.html

4

1 回答 1

4

启动存储在文件夹中的配置.atom/launches

例如。控制台(cli)配置:

type: cli
path: test\test.dart

cli:
  args:
  cwd:
  checked: true
  debug: true

Web 脚本 ( type: web) 的启动尚未实现。

dartlang/lib/launch/launch_web.dart
lib/plugin.dart

于 2016-03-19T14:00:38.103 回答