turbopack_ecmascript_runtime/
runtime_type.rs1use serde::Deserialize;
2
3#[turbo_tasks::value(shared, task_input)]
4#[derive(Debug, Clone, Copy, Hash, Deserialize)]
5pub enum RuntimeType {
6 Development,
7 Production,
8 #[cfg(feature = "test")]
9 Dummy,
11}