blob: 2992ef08a2283e7964ea1c37de380dff80b4a207 [file]
// Copyright 2022 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* Constants to consistently refer to configuration parameters configured in
* package.json.
*/
/**
* This is the root key for all configuration items for this extension.
*/
export const CONFIG_ROOT_NAME = 'fuchsia';
/**
* Flag for enabling debug behaviors.
*/
export const CONFIG_DEBUG_FLAG = `${CONFIG_ROOT_NAME}.debug`;
/**
* Timeout for launching `fx debug` and waiting for responses and connections.
*/
export const CONFIG_CONNECT_TIMEOUT = `${CONFIG_ROOT_NAME}.zxdb.timeout`;