office-addin-usage-data
Version:
Provides infrastructure to send usage data events and exceptions.
15 lines (12 loc) • 492 B
text/typescript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
import os from "os";
import path from "path";
export const usageDataJsonFilePath: string = path.join(
os.homedir(),
"/office-addin-usage-data.json"
);
export const groupName: string = "office-addin-usage-data";
export const instrumentationKeyForOfficeAddinCLITools: string =
"de0d9e7c-1f46-4552-bc21-4e43e489a015";
export const generatorOffice: string = "generator-office";