如何在 Dartium 中将 Atom 配置为 运行 Dart?
How to configure Atom to run Dart in Dartium?
如何像 Atom 中的 WebStorm 一样设置用 Dart 编写的 Web 应用程序的启动?
在Atom中,他尝试运行自己的Dart脚本而不是index.html
启动配置存储在文件夹 .atom/launches
。
例如。控制台 (cli) 配置:
type: cli
path: test\test.dart
cli:
args:
cwd:
checked: true
debug: true
Web 脚本 (type: web
) 的启动尚未实现。
如何像 Atom 中的 WebStorm 一样设置用 Dart 编写的 Web 应用程序的启动?
在Atom中,他尝试运行自己的Dart脚本而不是index.html
启动配置存储在文件夹 .atom/launches
。
例如。控制台 (cli) 配置:
type: cli
path: test\test.dart
cli:
args:
cwd:
checked: true
debug: true
Web 脚本 (type: web
) 的启动尚未实现。