diff --git a/.github/workflows/accept-baselines-fix-lints.yaml b/.github/workflows/accept-baselines-fix-lints.yaml index cb65de2c81ee8..d19da2d783435 100644 --- a/.github/workflows/accept-baselines-fix-lints.yaml +++ b/.github/workflows/accept-baselines-fix-lints.yaml @@ -16,7 +16,7 @@ jobs: git config user.email "typescriptbot@microsoft.com" git config user.name "TypeScript Bot" npm install - git rm -r --quiet tests/baselines/reference :^tests/baselines/reference/docker :^tests/baselines/reference/user + git rm -r --quiet tests/baselines/reference npx hereby runtests-parallel --ci --fix || true npx hereby baseline-accept git add ./src diff --git a/.gitignore b/.gitignore index c6f87d986b434..03766663f28ca 100644 --- a/.gitignore +++ b/.gitignore @@ -34,7 +34,6 @@ tests/webTestServer.js.map tests/webhost/*.d.ts tests/webhost/webtsc.js tests/cases/**/*.js -!tests/cases/docker/*.js/ tests/cases/**/*.js.map *.config scripts/eslint/built/ @@ -59,29 +58,9 @@ internal/ yarn.lock yarn-error.log .parallelperf.* -tests/cases/user/*/package-lock.json -tests/cases/user/*/node_modules/ -tests/cases/user/*/**/*.js -tests/cases/user/*/**/*.js.map -tests/cases/user/*/**/*.d.ts -!tests/cases/user/zone.js/ -!tests/cases/user/bignumber.js/ -!tests/cases/user/discord.js/ tests/baselines/reference/dt .failed-tests TEST-results.xml package-lock.json -tests/cases/user/npm/npm -tests/cases/user/TypeScript-React-Starter/TypeScript-React-Starter -tests/cases/user/TypeScript-Node-Starter/TypeScript-Node-Starter -tests/cases/user/TypeScript-React-Native-Starter/TypeScript-React-Native-Starter -tests/cases/user/TypeScript-Vue-Starter/TypeScript-Vue-Starter -tests/cases/user/TypeScript-WeChat-Starter/TypeScript-WeChat-Starter -tests/cases/user/create-react-app/create-react-app -tests/cases/user/fp-ts/fp-ts -tests/cases/user/webpack/webpack -tests/cases/user/puppeteer/puppeteer -tests/cases/user/axios-src/axios-src -tests/cases/user/prettier/prettier .eslintcache -*v8.log \ No newline at end of file +*v8.log diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index de82cd7e67683..0a06539dc3488 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -81,10 +81,7 @@ hereby tests # Build the test infrastructure using the built compile hereby runtests # Run tests using the built compiler and test infrastructure. # You can override the specific suite runner used or specify a test for this command. # Use --tests= for a specific test and/or --runner= for a specific suite. - # Valid runners include conformance, compiler, fourslash, project, user, and docker - # The user and docker runners are extended test suite runners - the user runner - # works on disk in the tests/cases/user directory, while the docker runner works in containers. - # You'll need to have the docker executable in your system path for the docker runner to work. + # Valid runners include conformance, compiler, fourslash, and project hereby runtests-parallel # Like runtests, but split across multiple threads. Uses a number of threads equal to the system # core count by default. Use --workers= to adjust this. hereby baseline-accept # This replaces the baseline test results with the results obtained from hereby runtests. diff --git a/src/harness/runnerbase.ts b/src/harness/runnerbase.ts index f617ac3d8a436..dbbdf662a9464 100644 --- a/src/harness/runnerbase.ts +++ b/src/harness/runnerbase.ts @@ -5,7 +5,7 @@ import { } from "./_namespaces/Harness"; import * as ts from "./_namespaces/ts"; -export type TestRunnerKind = CompilerTestKind | FourslashTestKind | "project" | "rwc" | "test262" | "user" | "dt" | "docker"; +export type TestRunnerKind = CompilerTestKind | FourslashTestKind | "project" | "rwc" | "test262" | "dt"; export type CompilerTestKind = "conformance" | "compiler"; export type FourslashTestKind = "fourslash" | "fourslash-shims" | "fourslash-shims-pp" | "fourslash-server"; diff --git a/src/testRunner/externalCompileRunner.ts b/src/testRunner/externalCompileRunner.ts index 932ab80d4739e..f251cce17647c 100644 --- a/src/testRunner/externalCompileRunner.ts +++ b/src/testRunner/externalCompileRunner.ts @@ -113,180 +113,6 @@ abstract class ExternalCompileRunnerBase extends RunnerBase { } } -export class UserCodeRunner extends ExternalCompileRunnerBase { - readonly testDir = "tests/cases/user/"; - kind(): TestRunnerKind { - return "user"; - } - report(result: ExecResult) { - // eslint-disable-next-line no-null/no-null - return result.status === 0 && !result.stdout.length && !result.stderr.length ? null : `Exit Code: ${result.status} -Standard output: -${sortErrors(stripAbsoluteImportPaths(result.stdout.toString().replace(/\r\n/g, "\n")))} - - -Standard error: -${stripAbsoluteImportPaths(result.stderr.toString().replace(/\r\n/g, "\n"))}`; - } -} - -export class DockerfileRunner extends ExternalCompileRunnerBase { - readonly testDir = "tests/cases/docker/"; - kind(): TestRunnerKind { - return "docker"; - } - override initializeTests(): void { - // Read in and evaluate the test list - const testList = this.tests && this.tests.length ? this.tests : this.getTestFiles(); - - // eslint-disable-next-line @typescript-eslint/no-this-alias - const cls = this; - describe(`${this.kind()} code samples`, function (this: Mocha.Suite) { - this.timeout(cls.timeout); // 20 minutes - before(() => { - // cached because workspace is hashed to determine cacheability - cls.exec("docker", ["build", ".", "-t", "typescript/typescript", "-f", cls.testDir + "Dockerfile"], { - cwd: IO.getWorkspaceRoot(), - env: { ...process.env, DOCKER_BUILDKIT: "1" }, // We need buildkit to allow Dockerfile.dockerignore to work. - }); - }); - for (const test of testList) { - const directory = typeof test === "string" ? test : test.file; - const cwd = path.join(IO.getWorkspaceRoot(), cls.testDir, directory); - it(`should build ${directory} successfully`, () => { - const imageName = `tstest/${directory}`; - cls.exec("docker", ["build", "--no-cache", ".", "-t", imageName], { cwd }); // --no-cache so the latest version of the repos referenced is always fetched - const cp: typeof import("child_process") = require("child_process"); - Baseline.runBaseline(`${cls.kind()}/${directory}.log`, cls.report(cp.spawnSync(`docker`, ["run", imageName], { cwd, timeout: cls.timeout, shell: true }))); - }); - } - }); - } - - private timeout = 1_200_000; // 20 minutes; - private exec(command: string, args: string[], options: { cwd: string; env?: NodeJS.ProcessEnv }): void { - const cp: typeof import("child_process") = require("child_process"); - const stdio = isWorker ? "pipe" : "inherit"; - const res = cp.spawnSync(isWorker ? `${command} 2>&1` : command, args, { timeout: this.timeout, shell: true, stdio, ...options }); - if (res.status !== 0) { - throw new Error(`${command} ${args.join(" ")} for ${options.cwd} failed: ${res.stdout && res.stdout.toString()}`); - } - } - report(result: ExecResult) { - // eslint-disable-next-line no-null/no-null - return result.status === 0 && !result.stdout.length && !result.stderr.length ? null : `Exit Code: ${result.status} -Standard output: -${sanitizeDockerfileOutput(result.stdout.toString())} - - -Standard error: -${sanitizeDockerfileOutput(result.stderr.toString())}`; - } -} - -function sanitizeDockerfileOutput(result: string): string { - return [ - normalizeNewlines, - stripANSIEscapes, - stripRushStageNumbers, - stripWebpackHash, - sanitizeVersionSpecifiers, - sanitizeTimestamps, - sanitizeSizes, - sanitizeUnimportantGulpOutput, - stripAbsoluteImportPaths, - ].reduce((result, f) => f(result), result); -} - -function normalizeNewlines(result: string): string { - return result.replace(/\r\n/g, "\n"); -} - -function stripANSIEscapes(result: string): string { - return result.replace(/\x1b\[[0-9;]*[a-zA-Z]/g, ""); -} - -function stripRushStageNumbers(result: string): string { - return result.replace(/\d+ of \d+:/g, "XX of XX:"); -} - -function stripWebpackHash(result: string): string { - return result.replace(/Hash: \w+/g, "Hash: [redacted]"); -} - -function sanitizeSizes(result: string): string { - return result.replace(/\d+(\.\d+)? ((Ki|M)B|bytes)/g, "X KiB"); -} - -/** - * Gulp's output order within a `parallel` block is nondeterministic (and there's no way to configure it to execute in series), - * so we purge as much of the gulp output as we can - */ -function sanitizeUnimportantGulpOutput(result: string): string { - return result.replace(/^.*(\] (Starting)|(Finished)).*$/gm, "") // "gulp" task start/end messages (nondeterministic order) - .replace(/^.*(\] . (finished)|(started)).*$/gm, "") // "just" task start/end messages (nondeterministic order) - .replace(/^.*\] Respawned to PID: \d+.*$/gm, "") // PID of child is OS and system-load dependent (likely stableish in a container but still dangerous) - .replace(/\n+/g, "\n") - .replace(/\/tmp\/yarn--.*?\/node/g, ""); -} - -function sanitizeTimestamps(result: string): string { - return result.replace(/\[\d?\d:\d\d:\d\d (A|P)M\]/g, "[XX:XX:XX XM]") - .replace(/\[\d?\d:\d\d:\d\d\]/g, "[XX:XX:XX]") - .replace(/\/\d+-\d+-[\d_TZ]+-debug.log/g, "\/XXXX-XX-XXXXXXXXX-debug.log") - .replace(/\d+\/\d+\/\d+ \d+:\d+:\d+ (AM|PM)/g, "XX/XX/XX XX:XX:XX XM") - .replace(/\d+(\.\d+)? sec(onds?)?/g, "? seconds") - .replace(/\d+(\.\d+)? min(utes?)?/g, "") - .replace(/\d+(\.\d+)? ?m?s/g, "?s") - .replace(/ \(\?s\)/g, ""); -} - -function sanitizeVersionSpecifiers(result: string): string { - return result - .replace(/\d+.\d+.\d+-insiders.\d\d\d\d\d\d\d\d/g, "X.X.X-insiders.xxxxxxxx") - .replace(/Rush Multi-Project Build Tool (\d+)\.\d+\.\d+/g, "Rush Multi-Project Build Tool $1.X.X") - .replace(/([@v\()])\d+\.\d+\.\d+/g, "$1X.X.X") - .replace(/webpack (\d+)\.\d+\.\d+/g, "webpack $1.X.X") - .replace(/Webpack version: (\d+)\.\d+\.\d+/g, "Webpack version: $1.X.X"); -} - -/** - * Import types and some other error messages use absolute paths in errors as they have no context to be written relative to; - * This is problematic for error baselines, so we grep for them and strip them out. - */ -function stripAbsoluteImportPaths(result: string) { - const workspaceRegexp = new RegExp(IO.getWorkspaceRoot().replace(/\\/g, "\\\\"), "g"); - return result - .replace(/import\(".*?\/tests\/cases\/user\//g, `import("/`) - .replace(/Module '".*?\/tests\/cases\/user\//g, `Module '"/`) - .replace(workspaceRegexp, "../../.."); -} - -function sortErrors(result: string) { - return ts.flatten(splitBy(result.split("\n"), s => /^\S+/.test(s)).sort(compareErrorStrings)).join("\n"); -} - -const errorRegexp = /^(.+\.[tj]sx?)\((\d+),(\d+)\)(: error TS.*)/; -function compareErrorStrings(a: string[], b: string[]) { - ts.Debug.assertGreaterThanOrEqual(a.length, 1); - ts.Debug.assertGreaterThanOrEqual(b.length, 1); - const matchA = a[0].match(errorRegexp); - if (!matchA) { - return -1; - } - const matchB = b[0].match(errorRegexp); - if (!matchB) { - return 1; - } - const [, errorFileA, lineNumberStringA, columnNumberStringA, remainderA] = matchA; - const [, errorFileB, lineNumberStringB, columnNumberStringB, remainderB] = matchB; - return ts.comparePathsCaseSensitive(errorFileA, errorFileB) || - ts.compareValues(parseInt(lineNumberStringA), parseInt(lineNumberStringB)) || - ts.compareValues(parseInt(columnNumberStringA), parseInt(columnNumberStringB)) || - ts.compareStringsCaseSensitive(remainderA, remainderB) || - ts.compareStringsCaseSensitive(a.slice(1).join("\n"), b.slice(1).join("\n")); -} - export class DefinitelyTypedRunner extends ExternalCompileRunnerBase { readonly testDir = "../DefinitelyTyped/types/"; override workingDirectory = this.testDir; @@ -304,31 +130,3 @@ Standard error: ${result.stderr.toString().replace(/\r\n/g, "\n")}`; } } - -/** - * Split an array into multiple arrays whenever `isStart` returns true. - * @example - * splitBy([1,2,3,4,5,6], isOdd) - * ==> [[1, 2], [3, 4], [5, 6]] - * where - * const isOdd = n => !!(n % 2) - */ -function splitBy(xs: T[], isStart: (x: T) => boolean): T[][] { - const result = []; - let group: T[] = []; - for (const x of xs) { - if (isStart(x)) { - if (group.length) { - result.push(group); - } - group = [x]; - } - else { - group.push(x); - } - } - if (group.length) { - result.push(group); - } - return result; -} diff --git a/src/testRunner/runner.ts b/src/testRunner/runner.ts index 611a47d0e2f7e..566c130f059a1 100644 --- a/src/testRunner/runner.ts +++ b/src/testRunner/runner.ts @@ -3,7 +3,6 @@ import { CompilerBaselineRunner, CompilerTestType, DefinitelyTypedRunner, - DockerfileRunner, FourSlashRunner, GeneratedFourslashRunner, IO, @@ -14,7 +13,6 @@ import { setShards, Test262BaselineRunner, TestRunnerKind, - UserCodeRunner, } from "./_namespaces/Harness"; import * as project from "./_namespaces/project"; import * as RWC from "./_namespaces/RWC"; @@ -80,12 +78,8 @@ export function createRunner(kind: TestRunnerKind): RunnerBase { return new RWC.RWCRunner(); case "test262": return new Test262BaselineRunner(); - case "user": - return new UserCodeRunner(); case "dt": return new DefinitelyTypedRunner(); - case "docker": - return new DockerfileRunner(); } return ts.Debug.fail(`Unknown runner kind ${kind}`); } @@ -223,15 +217,9 @@ function handleTestConfig() { case "test262": runners.push(new Test262BaselineRunner()); break; - case "user": - runners.push(new UserCodeRunner()); - break; case "dt": runners.push(new DefinitelyTypedRunner()); break; - case "docker": - runners.push(new DockerfileRunner()); - break; } } } @@ -250,12 +238,6 @@ function handleTestConfig() { runners.push(new FourSlashRunner(FourSlash.FourSlashTestType.ShimsWithPreprocess)); runners.push(new FourSlashRunner(FourSlash.FourSlashTestType.Server)); // runners.push(new GeneratedFourslashRunner()); - - // CRON-only tests - if (process.env.TRAVIS_EVENT_TYPE === "cron") { - runners.push(new UserCodeRunner()); - runners.push(new DockerfileRunner()); - } } if (runUnitTests === undefined) { runUnitTests = runners.length !== 1; // Don't run unit tests when running only one runner if unit tests were not explicitly asked for diff --git a/tests/baselines/reference/docker/azure-sdk.log b/tests/baselines/reference/docker/azure-sdk.log deleted file mode 100644 index c050c6a4b4c18..0000000000000 --- a/tests/baselines/reference/docker/azure-sdk.log +++ /dev/null @@ -1,600 +0,0 @@ -Exit Code: 1 -Standard output: - -Rush Multi-Project Build Tool 5.X.X - https://rushjs.io -Node.js version is 18.0.0 (pre-LTS) -Starting "rush rebuild" -Executing a maximum of ?simultaneous processes... -==[ @azure/eslint-plugin-azure-sdk ]=============================[ 1 of 274 ]== -"@azure-rest/agrifood-farming" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-rest/core-client" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/core-auth" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/abort-controller" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/core-rest-pipeline" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/core-tracing" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/core-util" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/logger" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/core-lro" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/core-http" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/test-utils" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/core-paging" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-rest/ai-document-translator" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tools/test-recorder" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/core-client" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/core-xml" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tools/test-credential" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/identity" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-rest/confidential-ledger" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-rest/iot-device-update" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-rest/purview-administration" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-rest/purview-catalog" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-rest/purview-scanning" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-rest/synapse-access-control" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/test-utils-perf" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/container-registry" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/data-tables" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/core-amqp" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/eventgrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/identity-cache-persistence" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/monitor-query" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/schema-registry" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/schema-registry-avro" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/event-hubs" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/mock-hub" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/storage-blob" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/storage-file-datalake" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/storage-file-share" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/template" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tools/communication-short-codes" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/communication-common" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tools/testing-recorder-new" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/storage-queue" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/ai-anomaly-detector" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/ai-form-recognizer" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/ai-metrics-advisor" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/core-http-compat" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/ai-text-analytics" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/app-configuration" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/attestation" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/communication-chat" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/communication-identity" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/communication-network-traversal" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/communication-phone-numbers" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/communication-sms" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/core-crypto" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/cosmos" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/digital-twins-core" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/dtdl-parser" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/iot-modelsrepository" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/eventhubs-checkpointstore-blob" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/eventhubs-checkpointstore-table" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/identity-vscode" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/keyvault-admin" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/keyvault-certificates" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/keyvault-common" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/keyvault-keys" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/keyvault-secrets" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/mixed-reality-authentication" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/mixed-reality-remote-rendering" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/monitor-opentelemetry-exporter" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/opentelemetry-instrumentation-azure-sdk" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/quantum-jobs" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/search-documents" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/service-bus" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/storage-blob-changefeed" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/storage-internal-avro" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/synapse-access-control" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/synapse-artifacts" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/synapse-managed-private-endpoints" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/synapse-monitoring" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/synapse-spark" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/video-analyzer-edge" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/web-pubsub" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/web-pubsub-express" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-core-rest-pipeline" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-advisor" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-analysisservices" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-apimanagement" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-app" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-appconfiguration" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-appinsights" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-appplatform" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-appservice" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-appservice-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-attestation" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-authorization" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-authorization-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-avs" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-azureadexternalidentities" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-azurestack" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-azurestackhci" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-batch" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-storage" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-billing" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-botservice" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-cdn" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-changeanalysis" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-cognitiveservices" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-commerce" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-commerce-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-commitmentplans" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-communication" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-compute" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-compute-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-confluent" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-consumption" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-containerinstance" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-containerregistry" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-containerservice" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-cosmosdb" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-customerinsights" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-dashboard" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-databox" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-databoxedge" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-databoxedge-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-databricks" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-datacatalog" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-datadog" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-datafactory" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-datalake-analytics" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-datamigration" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-deploymentmanager" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-desktopvirtualization" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-deviceprovisioningservices" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-devspaces" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-devtestlabs" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-digitaltwins" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-dns" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-dns-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-dnsresolver" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-domainservices" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-eventgrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-eventhub" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-eventhub-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-extendedlocation" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-features" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-frontdoor" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-hanaonazure" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-hardwaresecuritymodules" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-hdinsight" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-healthbot" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-healthcareapis" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-hybridcompute" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-hybridkubernetes" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-imagebuilder" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-iotcentral" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-iothub" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-iothub-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-keyvault" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-keyvault-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-kubernetesconfiguration" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-kusto" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-labservices" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-links" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-resources" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-loadtestservice" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-locks" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-locks-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-logic" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-machinelearningcompute" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-machinelearningexperimentation" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-machinelearningservices" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-managedapplications" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-managementgroups" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-managementpartner" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-maps" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-mariadb" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-marketplaceordering" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-mediaservices" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-migrate" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-mixedreality" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-mobilenetwork" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-monitor" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-operationalinsights" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-monitor-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-msi" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-mysql" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-mysql-flexible" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-netapp" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-network" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-network-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-notificationhubs" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-oep" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-operations" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-orbital" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-peering" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-policy" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-policy-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-policyinsights" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-portal" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-postgresql" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-postgresql-flexible" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-powerbidedicated" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-powerbiembedded" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-privatedns" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-purview" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-quota" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-recoveryservices" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-recoveryservices-siterecovery" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-recoveryservicesbackup" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-rediscache" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-redisenterprisecache" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-relay" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-reservations" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-resourcegraph" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-resourcehealth" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-resourcemover" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-resources-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-resources-subscriptions" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-scvmm" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-search" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-security" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-securityinsight" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-serialconsole" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-servicebus" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-servicefabric" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-servicefabricmesh" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-servicemap" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-signalr" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-sql" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-sqlvirtualmachine" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-storage-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-storagecache" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-storageimportexport" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-storagesync" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-storsimple?series" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-storsimple?series" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-streamanalytics" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-subscriptions" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-subscriptions-profile-2020-09-01-hybrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-support" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-synapse" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-templatespecs" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-timeseriesinsights" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-trafficmanager" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-videoanalyzer" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-visualstudio" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-vmwarecloudsimple" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-webpubsub" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-webservices" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure/arm-workspaces" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-storage-blob" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-app-configuration" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-template" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-ai-form-recognizer" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-ai-metrics-advisor" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-ai-text-analytics" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-container-registry" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-data-tables" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-event-hubs" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-eventgrid" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-identity" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-keyvault-certificates" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-keyvault-keys" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-keyvault-secrets" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-monitor-query" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-schema-registry-avro" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-search-documents" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-service-bus" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-storage-file-datalake" is blocked by "@azure/eslint-plugin-azure-sdk". -"@azure-tests/perf-storage-file-share" is blocked by "@azure/eslint-plugin-azure-sdk". -==[ @azure/dev-tool ]==========================================[ 274 of 274 ]== -==[ BLOCKED: 272 operations ]================================================== -These operations were blocked by dependencies that failed: - @azure-rest/agrifood-farming - @azure-rest/ai-document-translator - @azure-rest/confidential-ledger - @azure-rest/core-client - @azure-rest/iot-device-update - @azure-rest/purview-administration - @azure-rest/purview-catalog - @azure-rest/purview-scanning - @azure-rest/synapse-access-control - @azure-tests/perf-ai-form-recognizer - @azure-tests/perf-ai-metrics-advisor - @azure-tests/perf-ai-text-analytics - @azure-tests/perf-app-configuration - @azure-tests/perf-container-registry - @azure-tests/perf-core-rest-pipeline - @azure-tests/perf-data-tables - @azure-tests/perf-event-hubs - @azure-tests/perf-eventgrid - @azure-tests/perf-identity - @azure-tests/perf-keyvault-certificates - @azure-tests/perf-keyvault-keys - @azure-tests/perf-keyvault-secrets - @azure-tests/perf-monitor-query - @azure-tests/perf-schema-registry-avro - @azure-tests/perf-search-documents - @azure-tests/perf-service-bus - @azure-tests/perf-storage-blob - @azure-tests/perf-storage-file-datalake - @azure-tests/perf-storage-file-share - @azure-tests/perf-template - @azure-tools/communication-short-codes - @azure-tools/test-credential - @azure-tools/test-recorder - @azure-tools/testing-recorder-new - @azure/abort-controller - @azure/ai-anomaly-detector - @azure/ai-form-recognizer - @azure/ai-metrics-advisor - @azure/ai-text-analytics - @azure/app-configuration - @azure/arm-advisor - @azure/arm-analysisservices - @azure/arm-apimanagement - @azure/arm-app - @azure/arm-appconfiguration - @azure/arm-appinsights - @azure/arm-appplatform - @azure/arm-appservice - @azure/arm-appservice-profile-2020-09-01-hybrid - @azure/arm-attestation - @azure/arm-authorization - @azure/arm-authorization-profile-2020-09-01-hybrid - @azure/arm-avs - @azure/arm-azureadexternalidentities - @azure/arm-azurestack - @azure/arm-azurestackhci - @azure/arm-batch - @azure/arm-billing - @azure/arm-botservice - @azure/arm-cdn - @azure/arm-changeanalysis - @azure/arm-cognitiveservices - @azure/arm-commerce - @azure/arm-commerce-profile-2020-09-01-hybrid - @azure/arm-commitmentplans - @azure/arm-communication - @azure/arm-compute - @azure/arm-compute-profile-2020-09-01-hybrid - @azure/arm-confluent - @azure/arm-consumption - @azure/arm-containerinstance - @azure/arm-containerregistry - @azure/arm-containerservice - @azure/arm-cosmosdb - @azure/arm-customerinsights - @azure/arm-dashboard - @azure/arm-databox - @azure/arm-databoxedge - @azure/arm-databoxedge-profile-2020-09-01-hybrid - @azure/arm-databricks - @azure/arm-datacatalog - @azure/arm-datadog - @azure/arm-datafactory - @azure/arm-datalake-analytics - @azure/arm-datamigration - @azure/arm-deploymentmanager - @azure/arm-desktopvirtualization - @azure/arm-deviceprovisioningservices - @azure/arm-devspaces - @azure/arm-devtestlabs - @azure/arm-digitaltwins - @azure/arm-dns - @azure/arm-dns-profile-2020-09-01-hybrid - @azure/arm-dnsresolver - @azure/arm-domainservices - @azure/arm-eventgrid - @azure/arm-eventhub - @azure/arm-eventhub-profile-2020-09-01-hybrid - @azure/arm-extendedlocation - @azure/arm-features - @azure/arm-frontdoor - @azure/arm-hanaonazure - @azure/arm-hardwaresecuritymodules - @azure/arm-hdinsight - @azure/arm-healthbot - @azure/arm-healthcareapis - @azure/arm-hybridcompute - @azure/arm-hybridkubernetes - @azure/arm-imagebuilder - @azure/arm-iotcentral - @azure/arm-iothub - @azure/arm-iothub-profile-2020-09-01-hybrid - @azure/arm-keyvault - @azure/arm-keyvault-profile-2020-09-01-hybrid - @azure/arm-kubernetesconfiguration - @azure/arm-kusto - @azure/arm-labservices - @azure/arm-links - @azure/arm-loadtestservice - @azure/arm-locks - @azure/arm-locks-profile-2020-09-01-hybrid - @azure/arm-logic - @azure/arm-machinelearningcompute - @azure/arm-machinelearningexperimentation - @azure/arm-machinelearningservices - @azure/arm-managedapplications - @azure/arm-managementgroups - @azure/arm-managementpartner - @azure/arm-maps - @azure/arm-mariadb - @azure/arm-marketplaceordering - @azure/arm-mediaservices - @azure/arm-migrate - @azure/arm-mixedreality - @azure/arm-mobilenetwork - @azure/arm-monitor - @azure/arm-monitor-profile-2020-09-01-hybrid - @azure/arm-msi - @azure/arm-mysql - @azure/arm-mysql-flexible - @azure/arm-netapp - @azure/arm-network - @azure/arm-network-profile-2020-09-01-hybrid - @azure/arm-notificationhubs - @azure/arm-oep - @azure/arm-operationalinsights - @azure/arm-operations - @azure/arm-orbital - @azure/arm-peering - @azure/arm-policy - @azure/arm-policy-profile-2020-09-01-hybrid - @azure/arm-policyinsights - @azure/arm-portal - @azure/arm-postgresql - @azure/arm-postgresql-flexible - @azure/arm-powerbidedicated - @azure/arm-powerbiembedded - @azure/arm-privatedns - @azure/arm-purview - @azure/arm-quota - @azure/arm-recoveryservices - @azure/arm-recoveryservices-siterecovery - @azure/arm-recoveryservicesbackup - @azure/arm-rediscache - @azure/arm-redisenterprisecache - @azure/arm-relay - @azure/arm-reservations - @azure/arm-resourcegraph - @azure/arm-resourcehealth - @azure/arm-resourcemover - @azure/arm-resources - @azure/arm-resources-profile-2020-09-01-hybrid - @azure/arm-resources-subscriptions - @azure/arm-scvmm - @azure/arm-search - @azure/arm-security - @azure/arm-securityinsight - @azure/arm-serialconsole - @azure/arm-servicebus - @azure/arm-servicefabric - @azure/arm-servicefabricmesh - @azure/arm-servicemap - @azure/arm-signalr - @azure/arm-sql - @azure/arm-sqlvirtualmachine - @azure/arm-storage - @azure/arm-storage-profile-2020-09-01-hybrid - @azure/arm-storagecache - @azure/arm-storageimportexport - @azure/arm-storagesync - @azure/arm-storsimple?series - @azure/arm-storsimple?series - @azure/arm-streamanalytics - @azure/arm-subscriptions - @azure/arm-subscriptions-profile-2020-09-01-hybrid - @azure/arm-support - @azure/arm-synapse - @azure/arm-templatespecs - @azure/arm-timeseriesinsights - @azure/arm-trafficmanager - @azure/arm-videoanalyzer - @azure/arm-visualstudio - @azure/arm-vmwarecloudsimple - @azure/arm-webpubsub - @azure/arm-webservices - @azure/arm-workspaces - @azure/attestation - @azure/communication-chat - @azure/communication-common - @azure/communication-identity - @azure/communication-network-traversal - @azure/communication-phone-numbers - @azure/communication-sms - @azure/container-registry - @azure/core-amqp - @azure/core-auth - @azure/core-client - @azure/core-crypto - @azure/core-http - @azure/core-http-compat - @azure/core-lro - @azure/core-paging - @azure/core-rest-pipeline - @azure/core-tracing - @azure/core-util - @azure/core-xml - @azure/cosmos - @azure/data-tables - @azure/digital-twins-core - @azure/dtdl-parser - @azure/event-hubs - @azure/eventgrid - @azure/eventhubs-checkpointstore-blob - @azure/eventhubs-checkpointstore-table - @azure/identity - @azure/identity-cache-persistence - @azure/identity-vscode - @azure/iot-modelsrepository - @azure/keyvault-admin - @azure/keyvault-certificates - @azure/keyvault-common - @azure/keyvault-keys - @azure/keyvault-secrets - @azure/logger - @azure/mixed-reality-authentication - @azure/mixed-reality-remote-rendering - @azure/mock-hub - @azure/monitor-opentelemetry-exporter - @azure/monitor-query - @azure/opentelemetry-instrumentation-azure-sdk - @azure/quantum-jobs - @azure/schema-registry - @azure/schema-registry-avro - @azure/search-documents - @azure/service-bus - @azure/storage-blob - @azure/storage-blob-changefeed - @azure/storage-file-datalake - @azure/storage-file-share - @azure/storage-internal-avro - @azure/storage-queue - @azure/synapse-access-control - @azure/synapse-artifacts - @azure/synapse-managed-private-endpoints - @azure/synapse-monitoring - @azure/synapse-spark - @azure/template - @azure/test-utils - @azure/test-utils-perf - @azure/video-analyzer-edge - @azure/web-pubsub - @azure/web-pubsub-express -==[ FAILURE: 2 operations ]==================================================== ---[ FAILURE: @azure/dev-tool ]-------------------------------[ ? seconds ]-- -Invoking: tsc -../../temp/node_modules/.pnpm/@types+chai@X.X.X/node_modules/@types/chai/index.d.ts(412,54): error TS1005: ';' expected. -../../temp/node_modules/.pnpm/@types+node@X.X.X/node_modules/@types/node/assert.d.ts(2,68): error TS1144: '{' or ';' expected. -../../temp/node_modules/.pnpm/@types+node@X.X.X/node_modules/@types/node/assert.d.ts(53,68): error TS1144: '{' or ';' expected. -../../temp/node_modules/.pnpm/@types+node@X.X.X/node_modules/@types/node/assert.d.ts(62,94): error TS1144: '{' or ';' expected. -../../temp/node_modules/.pnpm/@types+node@X.X.X/node_modules/@types/node/assert.d.ts(62,101): error TS1005: ';' expected. -../../temp/node_modules/.pnpm/@types+node@X.X.X/node_modules/@types/node/assert.d.ts(62,104): error TS1005: ';' expected. -../../temp/node_modules/.pnpm/@types+node@X.X.X/node_modules/@types/node/assert.d.ts(64,98): error TS1144: '{' or ';' expected. -../../temp/node_modules/.pnpm/@types+node@X.X.X/node_modules/@types/node/assert.d.ts(64,105): error TS1005: ';' expected. - ...134 lines omitted... -src/util/samples/syntax.ts(170,68): error TS1109: Expression expected. -src/util/samples/syntax.ts(170,69): error TS1003: Identifier expected. -src/util/samples/syntax.ts(170,75): error TS1005: ':' expected. -src/util/samples/transforms.ts(71,30): error TS1109: Expression expected. -src/util/samples/transforms.ts(71,52): error TS1005: ':' expected. -src/util/samples/transforms.ts(80,32): error TS1109: Expression expected. -src/util/samples/transforms.ts(80,44): error TS1005: ':' expected. -src/util/typescript/diagnostic.ts(57,13): error TS1109: Expression expected. -src/util/typescript/diagnostic.ts(57,14): error TS1003: Identifier expected. -src/util/typescript/diagnostic.ts(57,25): error TS1005: ':' expected. ---[ FAILURE: @azure/eslint-plugin-azure-sdk ]---------------[ ? seconds ]-- -Invoking: tsc -p tsconfig.build.json -../../temp/node_modules/.pnpm/@types+node@X.X.X/node_modules/@types/node/assert.d.ts:2:68 - error TS1144: '{' or ';' expected. -2 function assert(value: any, message?: string | Error): asserts value; - ~~~~~ -../../temp/node_modules/.pnpm/@types+node@X.X.X/node_modules/@types/node/assert.d.ts:53:68 - error TS1144: '{' or ';' expected. -53 function ok(value: any, message?: string | Error): asserts value; - ...75 lines omitted... - ~ -src/rules/ts-package-json-name.ts:95:71 - error TS1005: ':' expected. -95 const [_, subScope] = packageName.match(/^@azure(-[a-z]+)?\//) ?? []; - ~ -Found 18 errors. -rush rebuild (? seconds) - - - -Standard error: -Returned error code: 2 -"@azure/eslint-plugin-azure-sdk" failed to build. -Returned error code: 1 -"@azure/dev-tool" failed to build. -Operations failed. diff --git a/tests/baselines/reference/docker/office-ui-fabric.log b/tests/baselines/reference/docker/office-ui-fabric.log deleted file mode 100644 index 603116ad3fc95..0000000000000 --- a/tests/baselines/reference/docker/office-ui-fabric.log +++ /dev/null @@ -1,3656 +0,0 @@ -Exit Code: 1 -Standard output: -@fluentui/bundle-size: yarn run vX.X.X -@fluentui/bundle-size: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/bundle-size: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/eslint-plugin: yarn run vX.X.X -@fluentui/eslint-plugin: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/eslint-plugin: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/noop: yarn run vX.X.X -@fluentui/noop: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/noop: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/web-components: yarn run vX.X.X -@fluentui/web-components: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/web-components: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/ability-attributes: yarn run vX.X.X -@fluentui/ability-attributes: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/ability-attributes: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/digest: yarn run vX.X.X -@fluentui/digest: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/digest: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/fluentui/digest/tsconfig.json -@fluentui/digest: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --module commonjs --outDir lib-commonjs --project "/office-ui-fabric-react/packages/fluentui/digest/tsconfig.json" -@fluentui/digest: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/fluentui/digest/tsconfig.json -@fluentui/digest: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --module esnext --outDir lib --project "/office-ui-fabric-react/packages/fluentui/digest/tsconfig.json" -@fluentui/digest: Done in ?s. Peak memory usage 31.38MB. -@fluentui/nx-workspace-tools: yarn run vX.X.X -@fluentui/nx-workspace-tools: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/nx-workspace-tools: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/typings: yarn run vX.X.X -@fluentui/typings: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/typings: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/scripts: yarn run vX.X.X -@fluentui/scripts: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/scripts: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/scripts/tsconfig.json -@fluentui/scripts: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/scripts/tsconfig.json" -@fluentui/scripts: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/scripts/tsconfig.json -@fluentui/scripts: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/scripts/tsconfig.json" -@fluentui/scripts: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/pr-deploy-site: yarn run vX.X.X -@fluentui/pr-deploy-site: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/pr-deploy-site: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/test-bundles: yarn run vX.X.X -@fluentui/test-bundles: $ just-scripts ts -@fluentui/test-bundles: Done in ?s. Peak memory usage 31.38MB. -@fluentui/a11y-testing: yarn run vX.X.X -@fluentui/a11y-testing: $ just-scripts ts -@fluentui/a11y-testing: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/a11y-testing/tsconfig.json -@fluentui/a11y-testing: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/a11y-testing/tsconfig.json" -@fluentui/a11y-testing: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/a11y-testing/tsconfig.json -@fluentui/a11y-testing: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/a11y-testing/tsconfig.json" -@fluentui/a11y-testing: Done in ?s. Peak memory usage 31.38MB. -@fluentui/api-docs: yarn run vX.X.X -@fluentui/api-docs: $ just-scripts ts -@fluentui/api-docs: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/api-docs/tsconfig.json -@fluentui/api-docs: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/api-docs/tsconfig.json" -@fluentui/api-docs: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/api-docs/tsconfig.json -@fluentui/api-docs: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/api-docs/tsconfig.json" -@fluentui/api-docs: Done in ?s. Peak memory usage 31.63MB. -@fluentui/codemods: yarn run vX.X.X -@fluentui/codemods: $ just-scripts ts -@fluentui/codemods: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/codemods/tsconfig.json -@fluentui/codemods: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/codemods/tsconfig.json" -@fluentui/codemods: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/codemods/tsconfig.json -@fluentui/codemods: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/codemods/tsconfig.json" -@fluentui/codemods: Done in ?s. Peak memory usage 31.38MB. -@fluentui/example-data: yarn run vX.X.X -@fluentui/example-data: $ just-scripts ts -@fluentui/example-data: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/example-data/tsconfig.json -@fluentui/example-data: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/example-data/tsconfig.json" -@fluentui/example-data: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/example-data/tsconfig.json -@fluentui/example-data: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/example-data/tsconfig.json" -@fluentui/example-data: Done in ?s. Peak memory usage 31.63MB. -@fluentui/keyboard-key: yarn run vX.X.X -@fluentui/keyboard-key: $ just-scripts ts -@fluentui/keyboard-key: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/keyboard-key/tsconfig.json -@fluentui/keyboard-key: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/keyboard-key/tsconfig.json" -@fluentui/keyboard-key: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/keyboard-key/tsconfig.json -@fluentui/keyboard-key: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/keyboard-key/tsconfig.json" -@fluentui/keyboard-key: Done in ?s. Peak memory usage 31.63MB. -@fluentui/keyboard-keys: yarn run vX.X.X -@fluentui/keyboard-keys: $ just-scripts ts -@fluentui/keyboard-keys: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/keyboard-keys: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/keyboard-keys: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/keyboard-keys: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/keyboard-keys: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/keyboard-keys: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/keyboard-keys: Done in ?s. Peak memory usage 31.63MB. -@fluentui/monaco-editor: yarn run vX.X.X -@fluentui/monaco-editor: $ just-scripts ts -@fluentui/monaco-editor: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/monaco-editor/tsconfig.json -@fluentui/monaco-editor: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/monaco-editor/tsconfig.json" -@fluentui/monaco-editor: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/monaco-editor/tsconfig.json -@fluentui/monaco-editor: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/monaco-editor/tsconfig.json" -@fluentui/monaco-editor: Done in ?s. Peak memory usage 31.38MB. -@fluentui/priority-overflow: yarn run vX.X.X -@fluentui/priority-overflow: $ just-scripts ts -@fluentui/priority-overflow: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/priority-overflow: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/priority-overflow: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/priority-overflow: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/priority-overflow: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/priority-overflow: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/priority-overflow: Done in ?s. Peak memory usage 31.63MB. -@fluentui/public-docsite-setup: yarn run vX.X.X -@fluentui/public-docsite-setup: $ just-scripts ts -@fluentui/public-docsite-setup: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/public-docsite-setup/tsconfig.json -@fluentui/public-docsite-setup: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/public-docsite-setup/tsconfig.json" -@fluentui/public-docsite-setup: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/public-docsite-setup/tsconfig.json -@fluentui/public-docsite-setup: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/public-docsite-setup/tsconfig.json" -@fluentui/public-docsite-setup: Done in ?s. Peak memory usage 31.63MB. -@fluentui/react-conformance: yarn run vX.X.X -@fluentui/react-conformance: $ just-scripts ts -@fluentui/react-conformance: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-conformance/tsconfig.json -@fluentui/react-conformance: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-conformance/tsconfig.json" -@fluentui/react-conformance: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-conformance/tsconfig.json -@fluentui/react-conformance: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-conformance/tsconfig.json" -@fluentui/react-conformance: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-portal-compat-context: yarn run vX.X.X -@fluentui/react-portal-compat-context: $ just-scripts ts -@fluentui/react-portal-compat-context: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-portal-compat-context: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-portal-compat-context: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-portal-compat-context: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-portal-compat-context: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-portal-compat-context: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-portal-compat-context: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-theme: yarn run vX.X.X -@fluentui/react-theme: $ just-scripts ts -@fluentui/react-theme: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-theme: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-theme: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-theme: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-theme: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-theme: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-theme: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/set-version: yarn run vX.X.X -@fluentui/set-version: $ just-scripts ts -@fluentui/set-version: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/set-version/tsconfig.json -@fluentui/set-version: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/set-version/tsconfig.json" -@fluentui/set-version: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/set-version/tsconfig.json -@fluentui/set-version: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/set-version/tsconfig.json" -@fluentui/set-version: Done in ?s. Peak memory usage 31.63MB. -@fluentui/test-utilities: yarn run vX.X.X -@fluentui/test-utilities: $ just-scripts ts -@fluentui/test-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/test-utilities/tsconfig.json -@fluentui/test-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/test-utilities/tsconfig.json" -@fluentui/test-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/test-utilities/tsconfig.json -@fluentui/test-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/test-utilities/tsconfig.json" -@fluentui/test-utilities: Done in ?s. Peak memory usage 31.38MB. -@fluentui/webpack-utilities: yarn run vX.X.X -@fluentui/webpack-utilities: $ just-scripts ts -@fluentui/webpack-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/webpack-utilities/tsconfig.json -@fluentui/webpack-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/webpack-utilities/tsconfig.json" -@fluentui/webpack-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/webpack-utilities/tsconfig.json -@fluentui/webpack-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/webpack-utilities/tsconfig.json" -@fluentui/webpack-utilities: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/accessibility: yarn run vX.X.X -@fluentui/accessibility: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/accessibility: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/docs-components: yarn run vX.X.X -@fluentui/docs-components: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/docs-components: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-component-event-listener: yarn run vX.X.X -@fluentui/react-component-event-listener: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-component-event-listener: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-component-nesting-registry: yarn run vX.X.X -@fluentui/react-component-nesting-registry: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-component-nesting-registry: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-component-ref: yarn run vX.X.X -@fluentui/react-component-ref: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-component-ref: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-proptypes: yarn run vX.X.X -@fluentui/react-proptypes: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-proptypes: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/state: yarn run vX.X.X -@fluentui/state: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/state: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/styles: yarn run vX.X.X -@fluentui/styles: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/styles: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-utilities: yarn run vX.X.X -@fluentui/react-utilities: $ just-scripts ts -@fluentui/react-utilities: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-utilities: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-utilities: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-conformance-griffel: yarn run vX.X.X -@fluentui/react-conformance-griffel: $ just-scripts ts -@fluentui/react-conformance-griffel: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-conformance-griffel: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-conformance-griffel: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-conformance-griffel: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-conformance-griffel: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-conformance-griffel: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-conformance-griffel: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-shared-contexts: yarn run vX.X.X -@fluentui/react-shared-contexts: $ just-scripts ts -@fluentui/react-shared-contexts: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-shared-contexts: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-shared-contexts: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-shared-contexts: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-shared-contexts: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-shared-contexts: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-shared-contexts: Done in ?s. Peak memory usage 31.38MB. -@fluentui/date-time-utilities: yarn run vX.X.X -@fluentui/date-time-utilities: $ just-scripts ts -@fluentui/date-time-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/date-time-utilities/tsconfig.json -@fluentui/date-time-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/date-time-utilities/tsconfig.json" -@fluentui/date-time-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/date-time-utilities/tsconfig.json -@fluentui/date-time-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/date-time-utilities/tsconfig.json" -@fluentui/date-time-utilities: Done in ?s. Peak memory usage 31.63MB. -@fluentui/dom-utilities: yarn run vX.X.X -@fluentui/dom-utilities: $ just-scripts ts -@fluentui/dom-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/dom-utilities/tsconfig.json -@fluentui/dom-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/dom-utilities/tsconfig.json" -@fluentui/dom-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/dom-utilities/tsconfig.json -@fluentui/dom-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/dom-utilities/tsconfig.json" -@fluentui/dom-utilities: Done in ?s. Peak memory usage 31.38MB. -@fluentui/merge-styles: yarn run vX.X.X -@fluentui/merge-styles: $ just-scripts ts -@fluentui/merge-styles: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/merge-styles/tsconfig.json -@fluentui/merge-styles: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/merge-styles/tsconfig.json" -@fluentui/merge-styles: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/merge-styles/tsconfig.json -@fluentui/merge-styles: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/merge-styles/tsconfig.json" -@fluentui/merge-styles: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-window-provider: yarn run vX.X.X -@fluentui/react-window-provider: $ just-scripts ts -@fluentui/react-window-provider: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-window-provider/tsconfig.json -@fluentui/react-window-provider: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-window-provider/tsconfig.json" -@fluentui/react-window-provider: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-window-provider/tsconfig.json -@fluentui/react-window-provider: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-window-provider/tsconfig.json" -@fluentui/react-window-provider: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-northstar-styles-renderer: yarn run vX.X.X -@fluentui/react-northstar-styles-renderer: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-northstar-styles-renderer: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-context-selector: yarn run vX.X.X -@fluentui/react-context-selector: $ just-scripts ts -@fluentui/react-context-selector: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-context-selector: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-context-selector: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-context-selector: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-context-selector: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-context-selector: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-context-selector: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-aria: yarn run vX.X.X -@fluentui/react-aria: $ just-scripts ts -@fluentui/react-aria: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-aria: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-aria: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-aria: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-aria: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-aria: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-aria: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-badge: yarn run vX.X.X -@fluentui/react-badge: $ just-scripts ts -@fluentui/react-badge: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-badge: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-badge: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-badge: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-badge: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-badge: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-badge: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-divider: yarn run vX.X.X -@fluentui/react-divider: $ just-scripts ts -@fluentui/react-divider: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-divider: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-divider: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-divider: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-divider: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-divider: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-divider: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-textarea: yarn run vX.X.X -@fluentui/react-textarea: $ just-scripts ts -@fluentui/react-textarea: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-textarea: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-textarea: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-textarea: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-textarea: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-textarea: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-textarea: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-alert: yarn run vX.X.X -@fluentui/react-alert: $ just-scripts ts -@fluentui/react-alert: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-alert: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-alert: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-alert: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-alert: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-alert: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-alert: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-dialog: yarn run vX.X.X -@fluentui/react-dialog: $ just-scripts ts -@fluentui/react-dialog: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-dialog: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-dialog: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-dialog: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-dialog: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-dialog: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-dialog: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-image: yarn run vX.X.X -@fluentui/react-image: $ just-scripts ts -@fluentui/react-image: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-image: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-image: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-image: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-image: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-image: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-image: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-input: yarn run vX.X.X -@fluentui/react-input: $ just-scripts ts -@fluentui/react-input: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-input: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-input: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-input: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-input: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-input: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-input: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-label: yarn run vX.X.X -@fluentui/react-label: $ just-scripts ts -@fluentui/react-label: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-label: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-label: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-label: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-label: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-label: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-label: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-list: yarn run vX.X.X -@fluentui/react-list: $ just-scripts ts -@fluentui/react-list: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-list: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-list: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-list: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-list: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-list: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-list: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-select: yarn run vX.X.X -@fluentui/react-select: $ just-scripts ts -@fluentui/react-select: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-select: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-select: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-select: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-select: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-select: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-select: Done in ?s. Peak memory usage 31.63MB. -@fluentui/react-text: yarn run vX.X.X -@fluentui/react-text: $ just-scripts ts -@fluentui/react-text: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-text: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-text: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-text: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-text: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-text: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-text: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-positioning: yarn run vX.X.X -@fluentui/react-positioning: $ just-scripts ts -@fluentui/react-positioning: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-positioning: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-positioning: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-positioning: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-positioning: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-positioning: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-positioning: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-tabster: yarn run vX.X.X -@fluentui/react-tabster: $ just-scripts ts -@fluentui/react-tabster: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-tabster: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-tabster: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-tabster: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-tabster: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-tabster: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-tabster: Done in ?s. Peak memory usage 31.38MB. -@fluentui/jest-serializer-merge-styles: yarn run vX.X.X -@fluentui/jest-serializer-merge-styles: $ just-scripts ts -@fluentui/jest-serializer-merge-styles: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/jest-serializer-merge-styles/tsconfig.json -@fluentui/jest-serializer-merge-styles: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/jest-serializer-merge-styles/tsconfig.json" -@fluentui/jest-serializer-merge-styles: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/jest-serializer-merge-styles/tsconfig.json -@fluentui/jest-serializer-merge-styles: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/jest-serializer-merge-styles/tsconfig.json" -@fluentui/jest-serializer-merge-styles: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-northstar-emotion-renderer: yarn run vX.X.X -@fluentui/react-northstar-emotion-renderer: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-northstar-emotion-renderer: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-northstar-fela-renderer: yarn run vX.X.X -@fluentui/react-northstar-fela-renderer: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-northstar-fela-renderer: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-overflow: yarn run vX.X.X -@fluentui/react-overflow: $ just-scripts ts -@fluentui/react-overflow: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-overflow: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-overflow: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-overflow: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-overflow: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-overflow: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-overflow: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-spinbutton: yarn run vX.X.X -@fluentui/react-spinbutton: $ just-scripts ts -@fluentui/react-spinbutton: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-spinbutton: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-spinbutton: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-spinbutton: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-spinbutton: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-spinbutton: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-spinbutton: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-spinner: yarn run vX.X.X -@fluentui/react-spinner: $ just-scripts ts -@fluentui/react-spinner: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-spinner: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-spinner: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-spinner: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-spinner: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-spinner: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-spinner: Done in ?s. Peak memory usage 31.63MB. -@fluentui/react-accordion: yarn run vX.X.X -@fluentui/react-accordion: $ just-scripts ts -@fluentui/react-accordion: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-accordion: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-accordion: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-accordion: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-accordion: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-accordion: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-accordion: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-radio: yarn run vX.X.X -@fluentui/react-radio: $ just-scripts ts -@fluentui/react-radio: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-radio: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-radio: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-radio: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-radio: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-radio: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-radio: Done in ?s. Peak memory usage 31.63MB. -@fluentui/react-switch: yarn run vX.X.X -@fluentui/react-switch: $ just-scripts ts -@fluentui/react-switch: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-switch: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-switch: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-switch: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-switch: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-switch: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-switch: Done in ?s. Peak memory usage 31.63MB. -@fluentui/react-button: yarn run vX.X.X -@fluentui/react-button: $ just-scripts ts -@fluentui/react-button: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-button: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-button: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-button: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-button: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-button: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-button: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-checkbox: yarn run vX.X.X -@fluentui/react-checkbox: $ just-scripts ts -@fluentui/react-checkbox: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-checkbox: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-checkbox: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-checkbox: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-checkbox: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-checkbox: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-checkbox: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-link: yarn run vX.X.X -@fluentui/react-link: $ just-scripts ts -@fluentui/react-link: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-link: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-link: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-link: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-link: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-link: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-link: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-portal: yarn run vX.X.X -@fluentui/react-portal: $ just-scripts ts -@fluentui/react-portal: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-portal: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-portal: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-portal: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-portal: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-portal: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-portal: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-provider: yarn run vX.X.X -@fluentui/react-provider: $ just-scripts ts -@fluentui/react-provider: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-provider: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-provider: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-provider: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-provider: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-provider: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-provider: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-slider: yarn run vX.X.X -@fluentui/react-slider: $ just-scripts ts -@fluentui/react-slider: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-slider: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-slider: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-slider: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-slider: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-slider: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-slider: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-tabs: yarn run vX.X.X -@fluentui/react-tabs: $ just-scripts ts -@fluentui/react-tabs: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-tabs: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-tabs: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-tabs: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-tabs: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-tabs: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-tabs: Done in ?s. Peak memory usage 31.38MB. -@fluentui/utilities: yarn run vX.X.X -@fluentui/utilities: $ just-scripts ts -@fluentui/utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/utilities/tsconfig.json -@fluentui/utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/utilities/tsconfig.json" -@fluentui/utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/utilities/tsconfig.json -@fluentui/utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/utilities/tsconfig.json" -@fluentui/utilities: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-bindings: yarn run vX.X.X -@fluentui/react-bindings: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-bindings: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-card: yarn run vX.X.X -@fluentui/react-card: $ just-scripts ts -@fluentui/react-card: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-card: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-card: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-card: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-card: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-card: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-card: Done in ?s. Peak memory usage 31.63MB. -@fluentui/react-toolbar: yarn run vX.X.X -@fluentui/react-toolbar: $ just-scripts ts -@fluentui/react-toolbar: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-toolbar: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-toolbar: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-toolbar: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-toolbar: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-toolbar: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-toolbar: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-combobox: yarn run vX.X.X -@fluentui/react-combobox: $ just-scripts ts -@fluentui/react-combobox: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-combobox: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-combobox: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-combobox: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-combobox: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-combobox: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-combobox: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-tooltip: yarn run vX.X.X -@fluentui/react-tooltip: $ just-scripts ts -@fluentui/react-tooltip: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-tooltip: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-tooltip: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-tooltip: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-tooltip: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-tooltip: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-tooltip: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-menu: yarn run vX.X.X -@fluentui/react-menu: $ just-scripts ts -@fluentui/react-menu: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-menu: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-menu: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-menu: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-menu: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-menu: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-menu: Done in ?s. Peak memory usage 31.63MB. -@fluentui/react-popover: yarn run vX.X.X -@fluentui/react-popover: $ just-scripts ts -@fluentui/react-popover: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-popover: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-popover: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-popover: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-popover: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-popover: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-popover: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-storybook-addon: yarn run vX.X.X -@fluentui/react-storybook-addon: $ just-scripts ts -@fluentui/react-storybook-addon: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-storybook-addon: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-storybook-addon: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-storybook-addon: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-storybook-addon: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-storybook-addon: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-storybook-addon: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-storybook: yarn run vX.X.X -@fluentui/react-storybook: $ just-scripts ts -@fluentui/react-storybook: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-storybook: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-storybook: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-storybook: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-storybook: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-storybook: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-storybook: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-hooks: yarn run vX.X.X -@fluentui/react-hooks: $ just-scripts ts -@fluentui/react-hooks: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-hooks/tsconfig.json -@fluentui/react-hooks: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-hooks/tsconfig.json" -@fluentui/react-hooks: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-hooks/tsconfig.json -@fluentui/react-hooks: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-hooks/tsconfig.json" -@fluentui/react-hooks: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/theme: yarn run vX.X.X -@fluentui/theme: $ just-scripts ts -@fluentui/theme: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/theme/tsconfig.json -@fluentui/theme: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/theme/tsconfig.json" -@fluentui/theme: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/theme/tsconfig.json -@fluentui/theme: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/theme/tsconfig.json" -@fluentui/theme: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-icons-northstar: yarn run vX.X.X -@fluentui/react-icons-northstar: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-icons-northstar: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-telemetry: yarn run vX.X.X -@fluentui/react-telemetry: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-telemetry: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-avatar: yarn run vX.X.X -@fluentui/react-avatar: $ just-scripts ts -@fluentui/react-avatar: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-avatar: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-avatar: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-avatar: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-avatar: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-avatar: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-avatar: Done in ?s. Peak memory usage 31.38MB. -@fluentui/scheme-utilities: yarn run vX.X.X -@fluentui/scheme-utilities: $ just-scripts ts -@fluentui/scheme-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/scheme-utilities/tsconfig.json -@fluentui/scheme-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/scheme-utilities/tsconfig.json" -@fluentui/scheme-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/scheme-utilities/tsconfig.json -@fluentui/scheme-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/scheme-utilities/tsconfig.json" -@fluentui/scheme-utilities: Done in ?s. Peak memory usage 31.38MB. -@fluentui/style-utilities: yarn run vX.X.X -@fluentui/style-utilities: $ just-scripts ts -@fluentui/style-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/style-utilities/tsconfig.json -@fluentui/style-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/style-utilities/tsconfig.json" -@fluentui/style-utilities: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/style-utilities/tsconfig.json -@fluentui/style-utilities: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/style-utilities/tsconfig.json" -@fluentui/style-utilities: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-northstar: yarn run vX.X.X -@fluentui/react-northstar: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-northstar: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/perf-test-react-components: yarn run vX.X.X -@fluentui/perf-test-react-components: $ just-scripts ts -@fluentui/perf-test-react-components: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/perf-test-react-components/tsconfig.json -@fluentui/perf-test-react-components: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/perf-test-react-components/tsconfig.json" -@fluentui/perf-test-react-components: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/perf-test-react-components/tsconfig.json -@fluentui/perf-test-react-components: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/apps/perf-test-react-components/tsconfig.json" -@fluentui/perf-test-react-components: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/vr-tests-react-components: yarn run vX.X.X -@fluentui/vr-tests-react-components: $ just-scripts ts -@fluentui/vr-tests-react-components: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/vr-tests-react-components/tsconfig.json -@fluentui/vr-tests-react-components: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/vr-tests-react-components/tsconfig.json" -@fluentui/vr-tests-react-components: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/vr-tests-react-components/tsconfig.json -@fluentui/vr-tests-react-components: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/apps/vr-tests-react-components/tsconfig.json" -@fluentui/vr-tests-react-components: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-components: yarn run vX.X.X -@fluentui/react-components: $ just-scripts ts -@fluentui/react-components: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-components: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-components: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-components: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-components: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-components: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-components: Done in ?s. Peak memory usage 31.38MB. -@fluentui/common-styles: yarn run vX.X.X -@fluentui/common-styles: $ just-scripts ts -@fluentui/common-styles: Done in ?s. Peak memory usage 31.63MB. -@fluentui/font-icons-mdl2: yarn run vX.X.X -@fluentui/font-icons-mdl2: $ just-scripts ts -@fluentui/font-icons-mdl2: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/font-icons-mdl2/tsconfig.json -@fluentui/font-icons-mdl2: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/font-icons-mdl2/tsconfig.json" -@fluentui/font-icons-mdl2: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/font-icons-mdl2/tsconfig.json -@fluentui/font-icons-mdl2: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/font-icons-mdl2/tsconfig.json" -@fluentui/font-icons-mdl2: Done in ?s. Peak memory usage 31.63MB. -@fluentui/foundation-legacy: yarn run vX.X.X -@fluentui/foundation-legacy: $ just-scripts ts -@fluentui/foundation-legacy: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/foundation-legacy/tsconfig.json -@fluentui/foundation-legacy: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/foundation-legacy/tsconfig.json" -@fluentui/foundation-legacy: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/foundation-legacy/tsconfig.json -@fluentui/foundation-legacy: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/foundation-legacy/tsconfig.json" -@fluentui/foundation-legacy: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-file-type-icons: yarn run vX.X.X -@fluentui/react-file-type-icons: $ just-scripts ts -@fluentui/react-file-type-icons: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-file-type-icons/tsconfig.json -@fluentui/react-file-type-icons: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-file-type-icons/tsconfig.json" -@fluentui/react-file-type-icons: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-file-type-icons/tsconfig.json -@fluentui/react-file-type-icons: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-file-type-icons/tsconfig.json" -@fluentui/react-file-type-icons: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-focus: yarn run vX.X.X -@fluentui/react-focus: $ just-scripts ts -@fluentui/react-focus: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-focus/tsconfig.json -@fluentui/react-focus: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-focus/tsconfig.json" -@fluentui/react-focus: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-focus/tsconfig.json -@fluentui/react-focus: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-focus/tsconfig.json" -@fluentui/react-focus: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-icon-provider: yarn run vX.X.X -@fluentui/react-icon-provider: $ just-scripts ts -@fluentui/react-icon-provider: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-icon-provider/tsconfig.json -@fluentui/react-icon-provider: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-icon-provider/tsconfig.json" -@fluentui/react-icon-provider: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-icon-provider/tsconfig.json -@fluentui/react-icon-provider: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-icon-provider/tsconfig.json" -@fluentui/react-icon-provider: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/circulars-test: yarn run vX.X.X -@fluentui/circulars-test: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/circulars-test: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/code-sandbox: yarn run vX.X.X -@fluentui/code-sandbox: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/code-sandbox: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/local-sandbox: yarn run vX.X.X -@fluentui/local-sandbox: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/local-sandbox: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/projects-test: yarn run vX.X.X -@fluentui/projects-test: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/projects-test: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/ts-minbar-test-react-components: yarn run vX.X.X -@fluentui/ts-minbar-test-react-components: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/ts-minbar-test-react-components: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/ts-minbar-test-react-components/tsconfig.json -@fluentui/ts-minbar-test-react-components: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/ts-minbar-test-react-components/tsconfig.json" -@fluentui/ts-minbar-test-react-components: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/ts-minbar-test-react-components/tsconfig.json -@fluentui/ts-minbar-test-react-components: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/apps/ts-minbar-test-react-components/tsconfig.json" -@fluentui/ts-minbar-test-react-components: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-portal-compat: yarn run vX.X.X -@fluentui/react-portal-compat: $ just-scripts ts -@fluentui/react-portal-compat: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-portal-compat: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-portal-compat: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-portal-compat: [XX:XX:XX XM] ■ 📣 TSC: package is using TS path aliases. Overriding tsconfig settings. -@fluentui/react-portal-compat: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with tsconfig.lib.json -@fluentui/react-portal-compat: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-portal-compat: Done in ?s. Peak memory usage 31.63MB. -@fluentui/react: yarn run vX.X.X -@fluentui/react: $ just-scripts ts -@fluentui/react: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react/tsconfig.json -@fluentui/react: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react/tsconfig.json" -@fluentui/react: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react/tsconfig.json -@fluentui/react: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react/tsconfig.json" -@fluentui/react: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-icons-mdl2: yarn run vX.X.X -@fluentui/react-icons-mdl2: $ just-scripts ts -@fluentui/react-icons-mdl2: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-icons-mdl2/tsconfig.json -@fluentui/react-icons-mdl2: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-icons-mdl2/tsconfig.json" -@fluentui/react-icons-mdl2: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-icons-mdl2/tsconfig.json -@fluentui/react-icons-mdl2: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-icons-mdl2/tsconfig.json" -@fluentui/react-icons-mdl2: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-builder: yarn run vX.X.X -@fluentui/react-builder: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-builder: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-northstar-prototypes: yarn run vX.X.X -@fluentui/react-northstar-prototypes: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/react-northstar-prototypes: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/perf-test: yarn run vX.X.X -@fluentui/perf-test: $ just-scripts ts -@fluentui/perf-test: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/perf-test/tsconfig.json -@fluentui/perf-test: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/perf-test/tsconfig.json" -@fluentui/perf-test: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/perf-test/tsconfig.json -@fluentui/perf-test: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/apps/perf-test/tsconfig.json" -@fluentui/perf-test: Done in ?s. Peak memory usage 32.69MB. -@fluentui/ts-minbar-test-react: yarn run vX.X.X -@fluentui/ts-minbar-test-react: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/ts-minbar-test-react: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/ts-minbar-test-react/tsconfig.json -@fluentui/ts-minbar-test-react: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/ts-minbar-test-react/tsconfig.json" -@fluentui/ts-minbar-test-react: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/ts-minbar-test-react/tsconfig.json -@fluentui/ts-minbar-test-react: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/apps/ts-minbar-test-react/tsconfig.json" -@fluentui/ts-minbar-test-react: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/azure-themes: yarn run vX.X.X -@fluentui/azure-themes: $ just-scripts ts -@fluentui/azure-themes: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/azure-themes/tsconfig.json -@fluentui/azure-themes: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/azure-themes/tsconfig.json" -@fluentui/azure-themes: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/azure-themes/tsconfig.json -@fluentui/azure-themes: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/azure-themes/tsconfig.json" -@fluentui/azure-themes: Done in ?s. Peak memory usage 31.63MB. -@fluentui/cra-template: yarn run vX.X.X -@fluentui/cra-template: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/cra-template: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-cards: yarn run vX.X.X -@fluentui/react-cards: $ just-scripts ts -@fluentui/react-cards: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-cards/tsconfig.json -@fluentui/react-cards: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-cards/tsconfig.json" -@fluentui/react-cards: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-cards/tsconfig.json -@fluentui/react-cards: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-cards/tsconfig.json" -@fluentui/react-cards: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-charting: yarn run vX.X.X -@fluentui/react-charting: $ just-scripts ts -@fluentui/react-charting: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-charting/tsconfig.json -@fluentui/react-charting: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-charting/tsconfig.json" -@fluentui/react-charting: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-charting/tsconfig.json -@fluentui/react-charting: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-charting/tsconfig.json" -@fluentui/react-charting: Done in ?s. Peak memory usage 31.63MB. -@fluentui/react-date-time: yarn run vX.X.X -@fluentui/react-date-time: $ just-scripts ts -@fluentui/react-date-time: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-date-time/tsconfig.json -@fluentui/react-date-time: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-date-time/tsconfig.json" -@fluentui/react-date-time: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-date-time/tsconfig.json -@fluentui/react-date-time: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-date-time/tsconfig.json" -@fluentui/react-date-time: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-experiments: yarn run vX.X.X -@fluentui/react-experiments: $ just-scripts ts -@fluentui/react-experiments: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-experiments/tsconfig.json -@fluentui/react-experiments: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-experiments/tsconfig.json" -@fluentui/react-experiments: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-experiments/tsconfig.json -@fluentui/react-experiments: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-experiments/tsconfig.json" -@fluentui/react-experiments: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/react-monaco-editor: yarn run vX.X.X -@fluentui/react-monaco-editor: $ just-scripts ts -@fluentui/react-monaco-editor: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-monaco-editor/tsconfig.json -@fluentui/react-monaco-editor: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-monaco-editor/tsconfig.json" -@fluentui/react-monaco-editor: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-monaco-editor/tsconfig.json -@fluentui/react-monaco-editor: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-monaco-editor/tsconfig.json" -@fluentui/react-monaco-editor: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/theme-samples: yarn run vX.X.X -@fluentui/theme-samples: $ just-scripts ts -@fluentui/theme-samples: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/theme-samples/tsconfig.json -@fluentui/theme-samples: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/theme-samples/tsconfig.json" -@fluentui/theme-samples: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/theme-samples/tsconfig.json -@fluentui/theme-samples: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/theme-samples/tsconfig.json" -@fluentui/theme-samples: Done in ?s. Peak memory usage 31.63MB. -@fluentui/react-icons-mdl2-branded: yarn run vX.X.X -@fluentui/react-icons-mdl2-branded: $ just-scripts ts -@fluentui/react-icons-mdl2-branded: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-icons-mdl2-branded/tsconfig.json -@fluentui/react-icons-mdl2-branded: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-icons-mdl2-branded/tsconfig.json" -@fluentui/react-icons-mdl2-branded: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-icons-mdl2-branded/tsconfig.json -@fluentui/react-icons-mdl2-branded: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-icons-mdl2-branded/tsconfig.json" -@fluentui/react-icons-mdl2-branded: Done in ?s. Peak memory usage 31.38MB. -@fluentui/docs: yarn run vX.X.X -@fluentui/docs: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/docs: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/e2e: yarn run vX.X.X -@fluentui/e2e: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/e2e: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/perf-test-northstar: yarn run vX.X.X -@fluentui/perf-test-northstar: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/perf-test-northstar: Webpack version: 5.X.X -@fluentui/perf-test-northstar: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/fluentui/perf-test-northstar/tsconfig.json -@fluentui/perf-test-northstar: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/fluentui/perf-test-northstar/tsconfig.json" -@fluentui/perf-test-northstar: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/fluentui/perf-test-northstar/tsconfig.json -@fluentui/perf-test-northstar: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/fluentui/perf-test-northstar/tsconfig.json" -@fluentui/perf-test-northstar: Done in ?s. Peak memory usage 31.38MB. -@fluentui/react-docsite-components: yarn run vX.X.X -@fluentui/react-docsite-components: $ just-scripts ts -@fluentui/react-docsite-components: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-docsite-components/tsconfig.json -@fluentui/react-docsite-components: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-docsite-components/tsconfig.json" -@fluentui/react-docsite-components: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-docsite-components/tsconfig.json -@fluentui/react-docsite-components: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-docsite-components/tsconfig.json" -@fluentui/react-docsite-components: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/storybook: yarn run vX.X.X -@fluentui/storybook: $ just-scripts ts -@fluentui/storybook: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/storybook/tsconfig.json -@fluentui/storybook: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/storybook/tsconfig.json" -@fluentui/storybook: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/storybook/tsconfig.json -@fluentui/storybook: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/storybook/tsconfig.json" -@fluentui/storybook: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/perf: yarn run vX.X.X -@fluentui/perf: $ /office-ui-fabric-react/node_modules/.bin/just ts -@fluentui/perf: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/theming-designer: yarn run vX.X.X -@fluentui/theming-designer: $ just-scripts ts -@fluentui/theming-designer: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/theming-designer/tsconfig.json -@fluentui/theming-designer: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/theming-designer/tsconfig.json" -@fluentui/theming-designer: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/theming-designer/tsconfig.json -@fluentui/theming-designer: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/apps/theming-designer/tsconfig.json" -@fluentui/theming-designer: Done in ?s. Peak memory usage 31.38MB. -@fluentui/public-docsite-v9: yarn run vX.X.X -@fluentui/public-docsite-v9: $ just-scripts ts -@fluentui/public-docsite-v9: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/public-docsite-v9/tsconfig.json -@fluentui/public-docsite-v9: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/public-docsite-v9/tsconfig.json" -@fluentui/public-docsite-v9: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/public-docsite-v9/tsconfig.json -@fluentui/public-docsite-v9: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/apps/public-docsite-v9/tsconfig.json" -@fluentui/public-docsite-v9: Done in ?s. Peak memory usage 31.38MB. -@fluentui/vr-tests: yarn run vX.X.X -@fluentui/vr-tests: $ just-scripts ts -@fluentui/vr-tests: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/vr-tests/tsconfig.json -@fluentui/vr-tests: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/vr-tests/tsconfig.json" -@fluentui/vr-tests: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/vr-tests/tsconfig.json -@fluentui/vr-tests: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/apps/vr-tests/tsconfig.json" -@fluentui/vr-tests: Done in ?s. Peak memory usage 31.63MB. -@fluentui/react-examples: yarn run vX.X.X -@fluentui/react-examples: $ just-scripts ts -@fluentui/react-examples: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-examples/tsconfig.json -@fluentui/react-examples: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-examples/tsconfig.json" -@fluentui/react-examples: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/packages/react-examples/tsconfig.json -@fluentui/react-examples: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-examples/tsconfig.json" -@fluentui/react-examples: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/public-docsite-resources: yarn run vX.X.X -@fluentui/public-docsite-resources: $ just-scripts ts -@fluentui/public-docsite-resources: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/public-docsite-resources/tsconfig.json -@fluentui/public-docsite-resources: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/public-docsite-resources/tsconfig.json" -@fluentui/public-docsite-resources: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/public-docsite-resources/tsconfig.json -@fluentui/public-docsite-resources: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/apps/public-docsite-resources/tsconfig.json" -@fluentui/public-docsite-resources: Done in ?s. Peak memory usage 31.38MB. -@fluentui/public-docsite: yarn run vX.X.X -@fluentui/public-docsite: $ just-scripts ts -@fluentui/public-docsite: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/public-docsite/tsconfig.json -@fluentui/public-docsite: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/public-docsite/tsconfig.json" -@fluentui/public-docsite: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-fabric-react/apps/public-docsite/tsconfig.json -@fluentui/public-docsite: [XX:XX:XX XM] ■ Executing: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/apps/public-docsite/tsconfig.json" -@fluentui/public-docsite: info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -@fluentui/ssr-tests: yarn run vX.X.X -@fluentui/ssr-tests: $ just-scripts ts -@fluentui/ssr-tests: Done in ?s. Peak memory usage 31.38MB. - - - -Standard error: -@fluentui/bundle-size: warning package.json: No license field -@fluentui/bundle-size: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/bundle-size: [XX:XX:XX XM] x Command not defined: ts -@fluentui/bundle-size: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/bundle-size: error Command failed with exit code 1. -@fluentui/eslint-plugin: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/eslint-plugin: [XX:XX:XX XM] x Command not defined: ts -@fluentui/eslint-plugin: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/eslint-plugin: error Command failed with exit code 1. -@fluentui/noop: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/noop: [XX:XX:XX XM] x Command not defined: ts -@fluentui/noop: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/noop: error Command failed with exit code 1. -@fluentui/web-components: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/web-components: [XX:XX:XX XM] x Command not defined: ts -@fluentui/web-components: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/web-components: error Command failed with exit code 1. -@fluentui/ability-attributes: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/ability-attributes: [XX:XX:XX XM] x Command not defined: ts -@fluentui/ability-attributes: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/ability-attributes: error Command failed with exit code 1. -@fluentui/nx-workspace-tools: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/nx-workspace-tools: [XX:XX:XX XM] x Command not defined: ts -@fluentui/nx-workspace-tools: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/nx-workspace-tools: error Command failed with exit code 1. -@fluentui/typings: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/typings: [XX:XX:XX XM] x Command not defined: ts -@fluentui/typings: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/typings: error Command failed with exit code 1. -@fluentui/scripts: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/scripts: [XX:XX:XX XM] x ------------------------------------ -@fluentui/scripts: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/scripts/tsconfig.json" -@fluentui/scripts: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/scripts: at ChildProcess.emit (events.js:314:20) -@fluentui/scripts: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/scripts: at maybeClose (internal/child_process.js:1022:16) -@fluentui/scripts: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/scripts: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/scripts: [XX:XX:XX XM] x stdout: -@fluentui/scripts: [XX:XX:XX XM] x cypress.js:70:3 - error TS1108: A 'return' statement can only be used within a function body. -@fluentui/scripts: 70 return run() -@fluentui/scripts: ~~~~~~ -@fluentui/scripts: dangerjs/detectNonApprovedDependencies/utils/getVersionConstraints.ts:45:84 - error TS2339: Property 'stack' does not exist on type 'unknown'. -@fluentui/scripts: 45 throw new Error(`There was an error reading the ${packageJsonPath} file: ${err.stack}`); -@fluentui/scripts: ~~~~~ -@fluentui/scripts: gulp/plugins/gulp-component-menu-behaviors.ts:113:30 - error TS2339: Property 'message' does not exist on type 'unknown'. -@fluentui/scripts: 113 gutil.colors.red(err.message), -@fluentui/scripts: ~~~~~~~ -@fluentui/scripts: gulp/plugins/gulp-component-menu-behaviors.ts:114:31 - error TS2339: Property 'stack' does not exist on type 'unknown'. -@fluentui/scripts: 114 gutil.colors.gray(err.stack), -@fluentui/scripts: ~~~~~ -@fluentui/scripts: gulp/plugins/gulp-example-menu.ts:73:30 - error TS2339: Property 'message' does not exist on type 'unknown'. -@fluentui/scripts: 73 gutil.colors.red(err.message), -@fluentui/scripts: ~~~~~~~ -@fluentui/scripts: gulp/plugins/gulp-example-menu.ts:74:31 - error TS2339: Property 'stack' does not exist on type 'unknown'. -@fluentui/scripts: 74 gutil.colors.gray(err.stack), -@fluentui/scripts: ~~~~~ -@fluentui/scripts: gulp/plugins/gulp-react-docgen.ts:57:30 - error TS2339: Property 'message' does not exist on type 'unknown'. -@fluentui/scripts: 57 gutil.colors.red(err.message), -@fluentui/scripts: ~~~~~~~ -@fluentui/scripts: gulp/plugins/gulp-react-docgen.ts:58:31 - error TS2339: Property 'stack' does not exist on type 'unknown'. -@fluentui/scripts: 58 gutil.colors.gray(err.stack), -@fluentui/scripts: ~~~~~ -@fluentui/scripts: gulp/plugins/util/parseTypeAnnotation.ts:51:54 - error TS2339: Property 'value' does not exist on type 'StringLiteral | BigIntLiteral | BooleanLiteral | NumericLiteral | UnaryExpression'. -@fluentui/scripts: Property 'value' does not exist on type 'UnaryExpression'. -@fluentui/scripts: 51 return [{ name: 'literal', value: tsType.literal.value.toString() }]; -@fluentui/scripts: ~~~~~ -@fluentui/scripts: gulp/tasks/browserAdapters.ts:71:7 - error TS2794: Expected 1 arguments, but got 0. Did you forget to include 'void' in your type argument to 'Promise'? -@fluentui/scripts: 71 resolve(); -@fluentui/scripts: ~~~~~~~~~ -@fluentui/scripts: ../node_modules/typescript/lib/lib.es2015.promise.d.ts:33:34 -@fluentui/scripts: 33 new (executor: (resolve: (value: T | PromiseLike) => void, reject: (reason?: any) => void) => void): Promise; -@fluentui/scripts: ~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/scripts: An argument for 'value' was not provided. -@fluentui/scripts: publish-beta.js:18:12 - error TS1212: Identifier expected. 'package' is a reserved word in strict mode. -@fluentui/scripts: 18 for (const package of packages) { -@fluentui/scripts: ~~~~~~~ -@fluentui/scripts: publish-beta.js:19:53 - error TS1212: Identifier expected. 'package' is a reserved word in strict mode. -@fluentui/scripts: 19 const packagePath = path.resolve(__dirname, '..', package.packagePath); -@fluentui/scripts: ~~~~~~~ -@fluentui/scripts: publish-beta.js:21:43 - error TS1212: Identifier expected. 'package' is a reserved word in strict mode. -@fluentui/scripts: 21 console.log(`Publishing ${chalk.magenta(package.packageName)} in ${packagePath}`); -@fluentui/scripts: ~~~~~~~ -@fluentui/scripts: typescript/normalize-import.js:87:3 - error TS2322: Type 'FlatArray[]' is not assignable to type 'string[]'. -@fluentui/scripts: Type 'FlatArray' is not assignable to type 'string'. -@fluentui/scripts: Type 'string[]' is not assignable to type 'string'. -@fluentui/scripts: 87 return allFiles.flat(Infinity); -@fluentui/scripts: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/scripts: typescript/normalize-import.spec.js:61:75 - error TS2339: Property 'toThrowError' does not exist on type 'Assertion'. -@fluentui/scripts: 61 expect(() => execSync(`node ${utils.scriptPath}`, { stdio: 'pipe' })).toThrowError('--output is missing'); -@fluentui/scripts: ~~~~~~~~~~~~ -@fluentui/scripts: typescript/normalize-import.spec.js:67:106 - error TS2339: Property 'toThrowError' does not exist on type 'Assertion'. -@fluentui/scripts: 67 expect(() => execSync(`node ${utils.scriptPath} --output some/nonexistent/path`, { stdio: 'pipe' })).toThrowError( -@fluentui/scripts: ~~~~~~~~~~~~ -@fluentui/scripts: typescript/normalize-import.spec.js:78:21 - error TS2551: Property 'toContain' does not exist on type 'Assertion'. Did you mean 'contain'? -@fluentui/scripts: 78 expect(content).toContain('import("../../../../pkg-name/src")'); -@fluentui/scripts: ~~~~~~~~~ -@fluentui/scripts: ../node_modules/cypress/types/chai/index.d.ts:193:9 -@fluentui/scripts: 193 contain: Include; -@fluentui/scripts: ~~~~~~~ -@fluentui/scripts: 'contain' is declared here. -@fluentui/scripts: typescript/normalize-import.spec.js:79:27 - error TS2551: Property 'toContain' does not exist on type 'Assertion'. Did you mean 'contain'? -@fluentui/scripts: 79 expect(contentNested).toContain('import("../../../../pkg-name/src")'); -@fluentui/scripts: ~~~~~~~~~ -@fluentui/scripts: ../node_modules/cypress/types/chai/index.d.ts:193:9 -@fluentui/scripts: 193 contain: Include; -@fluentui/scripts: ~~~~~~~ -@fluentui/scripts: 'contain' is declared here. -@fluentui/scripts: typescript/normalize-import.spec.js:86:25 - error TS2551: Property 'toContain' does not exist on type 'Assertion'. Did you mean 'contain'? -@fluentui/scripts: 86 expect(content).not.toContain('import("../../../../pkg-name/src")'); -@fluentui/scripts: ~~~~~~~~~ -@fluentui/scripts: ../node_modules/cypress/types/chai/index.d.ts:193:9 -@fluentui/scripts: 193 contain: Include; -@fluentui/scripts: ~~~~~~~ -@fluentui/scripts: 'contain' is declared here. -@fluentui/scripts: typescript/normalize-import.spec.js:87:21 - error TS2551: Property 'toContain' does not exist on type 'Assertion'. Did you mean 'contain'? -@fluentui/scripts: 87 expect(content).toContain('import("@fluentui/pkg-name")'); -@fluentui/scripts: ~~~~~~~~~ -@fluentui/scripts: ../node_modules/cypress/types/chai/index.d.ts:193:9 -@fluentui/scripts: 193 contain: Include; -@fluentui/scripts: ~~~~~~~ -@fluentui/scripts: 'contain' is declared here. -@fluentui/scripts: typescript/normalize-import.spec.js:88:31 - error TS2551: Property 'toContain' does not exist on type 'Assertion'. Did you mean 'contain'? -@fluentui/scripts: 88 expect(contentNested).not.toContain('import("../../../../pkg-name/src")'); -@fluentui/scripts: ~~~~~~~~~ -@fluentui/scripts: ../node_modules/cypress/types/chai/index.d.ts:193:9 -@fluentui/scripts: 193 contain: Include; -@fluentui/scripts: ~~~~~~~ -@fluentui/scripts: 'contain' is declared here. -@fluentui/scripts: typescript/normalize-import.spec.js:89:27 - error TS2551: Property 'toContain' does not exist on type 'Assertion'. Did you mean 'contain'? -@fluentui/scripts: 89 expect(contentNested).toContain('import("@fluentui/pkg-name")'); -@fluentui/scripts: ~~~~~~~~~ -@fluentui/scripts: ../node_modules/cypress/types/chai/index.d.ts:193:9 -@fluentui/scripts: 193 contain: Include; -@fluentui/scripts: ~~~~~~~ -@fluentui/scripts: 'contain' is declared here. -@fluentui/scripts: updateReleaseNotes/releases.ts:23:17 - error TS2339: Property 'status' does not exist on type 'unknown'. -@fluentui/scripts: 23 if (err.status === 404) { -@fluentui/scripts: ~~~~~~ -@fluentui/scripts: webpack/webpack-resources.js:10:1 - error TS9006: Declaration emit for this file requires using private name 'Output' from module '"/office-ui-fabric-react/node_modules/webpack/types"'. An explicit type annotation may unblock declaration emit. -@fluentui/scripts: 10 const webpack = require('webpack'); -@fluentui/scripts: ~~~~~ -@fluentui/scripts: webpack/webpack.config.stats.ts:67:11 - error TS2345: Argument of type '{ cache: boolean; parallel: true; sourceMap: boolean; terserOptions: { mangle: false; output: { beautify: true; comments: true; preserve_annotations: true; }; }; }' is not assignable to parameter of type 'BasePluginOptions & { minify?: MinimizerImplementation; terserOptions?: MinimizerOptions; }'. -@fluentui/scripts: Object literal may only specify known properties, and 'cache' does not exist in type 'BasePluginOptions & { minify?: MinimizerImplementation; terserOptions?: MinimizerOptions; }'. -@fluentui/scripts: 67 cache: true, -@fluentui/scripts: ~~~~~~~~~~~ -@fluentui/scripts: webpack/webpack.config.stats.ts:84:9 - error TS2351: This expression is not constructable. -@fluentui/scripts: Type 'typeof import("/office-ui-fabric-react/node_modules/clean-webpack-plugin/dist/clean-webpack-plugin")' has no construct signatures. -@fluentui/scripts: 84 new CleanWebpackPlugin([paths.base('stats')], { -@fluentui/scripts: ~~~~~~~~~~~~~~~~~~ -@fluentui/scripts: Found 26 errors in 13 files. -@fluentui/scripts: Errors Files -@fluentui/scripts: 1 cypress.js:70 -@fluentui/scripts: 1 dangerjs/detectNonApprovedDependencies/utils/getVersionConstraints.ts:45 -@fluentui/scripts: 2 gulp/plugins/gulp-component-menu-behaviors.ts:113 -@fluentui/scripts: 2 gulp/plugins/gulp-example-menu.ts:73 -@fluentui/scripts: 2 gulp/plugins/gulp-react-docgen.ts:57 -@fluentui/scripts: 1 gulp/plugins/util/parseTypeAnnotation.ts:51 -@fluentui/scripts: 1 gulp/tasks/browserAdapters.ts:71 -@fluentui/scripts: 3 publish-beta.js:18 -@fluentui/scripts: 1 typescript/normalize-import.js:87 -@fluentui/scripts: 8 typescript/normalize-import.spec.js:61 -@fluentui/scripts: 1 updateReleaseNotes/releases.ts:23 -@fluentui/scripts: 1 webpack/webpack-resources.js:10 -@fluentui/scripts: 2 webpack/webpack.config.stats.ts:67 -@fluentui/scripts: [XX:XX:XX XM] x ------------------------------------ -@fluentui/scripts: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/scripts: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/scripts: error Command failed with exit code 1. -@fluentui/pr-deploy-site: [XX:XX:XX XM] x Command not defined: ts -@fluentui/pr-deploy-site: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/pr-deploy-site: error Command failed with exit code 1. -@fluentui/react-conformance: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react-conformance: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-conformance: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-conformance/tsconfig.json" -@fluentui/react-conformance: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-conformance: at ChildProcess.emit (events.js:314:20) -@fluentui/react-conformance: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-conformance: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-conformance: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-conformance: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-conformance: [XX:XX:XX XM] x stdout: -@fluentui/react-conformance: [XX:XX:XX XM] x src/defaultTests.tsx:44:77 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 44 throw new Error(defaultErrorMessages['exports-component'](testInfo, e, Object.keys(componentFile))); -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:56:77 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 56 throw new Error(defaultErrorMessages['component-renders'](testInfo, e)); -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:78:85 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 78 throw new Error(defaultErrorMessages['component-has-displayname'](testInfo, e)); -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:100:81 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 100 throw new Error(defaultErrorMessages['component-handles-ref'](testInfo, e)); -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:134:82 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 134 throw new Error(defaultErrorMessages['component-has-root-ref'](testInfo, e)); -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:180:75 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 180 throw new Error(defaultErrorMessages['omits-size-prop'](testInfo, e, size, elementWithSize!)); -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:217:73 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 217 defaultErrorMessages['component-handles-classname'](testInfo, e, testClassName, classNames, domNode), -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:240:13 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 240 e, -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:270:76 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 270 defaultErrorMessages['component-has-static-classname'](testInfo, e, componentClassName, classNames), -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:297:85 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 297 defaultErrorMessages['component-has-static-classname-exported'](testInfo, e, componentClassName, exportName), -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:324:93 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 324 defaultErrorMessages['component-has-static-classnames-object-exported'](testInfo, e, exportName), -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:349:95 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 349 defaultErrorMessages['component-has-static-classnames-in-correct-format'](testInfo, e, exportName), -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:384:15 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 384 e, -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:404:81 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 404 throw new Error(defaultErrorMessages['name-matches-filename'](testInfo, e)); -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:422:78 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 422 throw new Error(defaultErrorMessages['exported-top-level'](testInfo, e)); -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:440:78 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 440 throw new Error(defaultErrorMessages['has-top-level-file'](testInfo, e)); -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/defaultTests.tsx:495:68 - error TS2345: Argument of type '(errors: Record, propName: string) => { [x: string]: unknown; }' is not assignable to parameter of type '(previousValue: Record, currentValue: string, currentIndex: number, array: string[]) => Record'. -@fluentui/react-conformance: Type '{ [x: string]: unknown; }' is not assignable to type 'Record'. -@fluentui/react-conformance: 'string' index signatures are incompatible. -@fluentui/react-conformance: Type 'unknown' is not assignable to type 'Error'. -@fluentui/react-conformance: 495 const invalidProps = propNames.reduce>((errors, propName) => { -@fluentui/react-conformance: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-conformance: src/defaultTests.tsx:538:84 - error TS2345: Argument of type 'string' is not assignable to parameter of type 'Record'. -@fluentui/react-conformance: 538 throw new Error(defaultErrorMessages['consistent-callback-args'](testInfo, invalidProps)); -@fluentui/react-conformance: ~~~~~~~~~~~~ -@fluentui/react-conformance: src/defaultTests.tsx:605:90 - error TS2345: Argument of type 'unknown' is not assignable to parameter of type 'Error'. -@fluentui/react-conformance: 605 throw new Error(defaultErrorMessages['primary-slot-gets-native-props'](testInfo, e)); -@fluentui/react-conformance: ~ -@fluentui/react-conformance: src/utils/merge.ts:32:10 - error TS2352: Conversion of type '{}' to type 'T' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first. -@fluentui/react-conformance: 'T' could be instantiated with an arbitrary type which could be unrelated to '{}'. -@fluentui/react-conformance: 32 return merged as T; -@fluentui/react-conformance: ~~~~~~~~~~~ -@fluentui/react-conformance: Found 20 errors in 2 files. -@fluentui/react-conformance: Errors Files -@fluentui/react-conformance: 19 src/defaultTests.tsx:44 -@fluentui/react-conformance: 1 src/utils/merge.ts:32 -@fluentui/react-conformance: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-conformance: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-conformance: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react-conformance: error Command failed with exit code 1. -@fluentui/react-theme: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react-theme: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-theme: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-theme: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-theme: at ChildProcess.emit (events.js:314:20) -@fluentui/react-theme: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-theme: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-theme: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-theme: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-theme: [XX:XX:XX XM] x stdout: -@fluentui/react-theme: [XX:XX:XX XM] x src/themeToTokensObject.ts:15:28 - error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. -@fluentui/react-theme: 15 tokens[key] = `var(--${key})`; -@fluentui/react-theme: ~~~ -@fluentui/react-theme: Found 1 error in src/themeToTokensObject.ts:15 -@fluentui/react-theme: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-theme: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-theme: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react-theme: error Command failed with exit code 1. -@fluentui/webpack-utilities: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/webpack-utilities: [XX:XX:XX XM] x ------------------------------------ -@fluentui/webpack-utilities: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/webpack-utilities/tsconfig.json" -@fluentui/webpack-utilities: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/webpack-utilities: at ChildProcess.emit (events.js:314:20) -@fluentui/webpack-utilities: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/webpack-utilities: at maybeClose (internal/child_process.js:1022:16) -@fluentui/webpack-utilities: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/webpack-utilities: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/webpack-utilities: [XX:XX:XX XM] x stdout: -@fluentui/webpack-utilities: [XX:XX:XX XM] x src/fabricAsyncLoaderInclude.ts:7:1 - error TS1203: Export assignment cannot be used when targeting ECMAScript modules. Consider using 'export default' or another module format instead. -@fluentui/webpack-utilities: 7 export = (input: string) => -@fluentui/webpack-utilities: ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/webpack-utilities: 8 input.match(/@fluentui[\\/]react[\\/]lib[\\/]components[\\/]ContextualMenu[\\/]ContextualMenu.js/) || -@fluentui/webpack-utilities: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/webpack-utilities: 9 input.match(/@fluentui[\\/]react[\\/]lib[\\/]components[\\/]Callout[\\/]Callout.js/); -@fluentui/webpack-utilities: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/webpack-utilities: Found 1 error in src/fabricAsyncLoaderInclude.ts:7 -@fluentui/webpack-utilities: [XX:XX:XX XM] x ------------------------------------ -@fluentui/webpack-utilities: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/webpack-utilities: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/webpack-utilities: error Command failed with exit code 1. -@fluentui/accessibility: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/accessibility: [XX:XX:XX XM] x Command not defined: ts -@fluentui/accessibility: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/accessibility: error Command failed with exit code 1. -@fluentui/docs-components: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/docs-components: [XX:XX:XX XM] x Command not defined: ts -@fluentui/docs-components: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/docs-components: error Command failed with exit code 1. -@fluentui/react-component-event-listener: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-component-event-listener: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-component-event-listener: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-component-event-listener: error Command failed with exit code 1. -@fluentui/react-component-nesting-registry: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-component-nesting-registry: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-component-nesting-registry: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-component-nesting-registry: error Command failed with exit code 1. -@fluentui/react-component-ref: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-component-ref: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-component-ref: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-component-ref: error Command failed with exit code 1. -@fluentui/react-proptypes: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-proptypes: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-proptypes: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-proptypes: error Command failed with exit code 1. -@fluentui/state: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/state: [XX:XX:XX XM] x Command not defined: ts -@fluentui/state: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/state: error Command failed with exit code 1. -@fluentui/styles: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/styles: [XX:XX:XX XM] x Command not defined: ts -@fluentui/styles: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/styles: error Command failed with exit code 1. -@fluentui/react-utilities: [XX:XX:XX XM] x Error detected while running '_wrapFunction' -@fluentui/react-utilities: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-utilities: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-utilities: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-utilities: at ChildProcess.emit (events.js:314:20) -@fluentui/react-utilities: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-utilities: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-utilities: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-utilities: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-utilities: [XX:XX:XX XM] x stdout: -@fluentui/react-utilities: [XX:XX:XX XM] x src/compose/types.ts:106:38 - error TS2344: Type 'Props' does not satisfy the constraint '{ children?: unknown; }'. -@fluentui/react-utilities: 106 ? WithSlotRenderFunction -@fluentui/react-utilities: ~~~~~ -@fluentui/react-utilities: src/compose/types.ts:105:54 -@fluentui/react-utilities: 105 : Type extends React.ComponentType // Component types like `typeof Button` -@fluentui/react-utilities: ~~~~~ -@fluentui/react-utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/react-utilities: src/utils/applyTriggerPropsToChildren.ts:39:38 - error TS2769: No overload matches this call. -@fluentui/react-utilities: The last overload gave the following error. -@fluentui/react-utilities: Argument of type 'TTriggerProps' is not assignable to parameter of type '(Partial & Attributes) | undefined'. -@fluentui/react-utilities: Type 'TTriggerProps' is not assignable to type 'Partial & Attributes'. -@fluentui/react-utilities: Type 'TTriggerProps' is not assignable to type 'Partial'. -@fluentui/react-utilities: 39 return React.cloneElement(child, triggerProps); -@fluentui/react-utilities: ~~~~~~~~~~~~ -@fluentui/react-utilities: src/utils/applyTriggerPropsToChildren.ts:27:27 -@fluentui/react-utilities: 27 const cloneTriggerTree = (child: React.ReactNode, triggerProps: TTriggerProps): React.ReactElement => { -@fluentui/react-utilities: ~~~~~~~~~~~~~ -@fluentui/react-utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/react-utilities: src/utils/applyTriggerPropsToChildren.ts:27:27 -@fluentui/react-utilities: 27 const cloneTriggerTree = (child: React.ReactNode, triggerProps: TTriggerProps): React.ReactElement => { -@fluentui/react-utilities: ~~~~~~~~~~~~~ -@fluentui/react-utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/react-utilities: src/utils/applyTriggerPropsToChildren.ts:27:27 -@fluentui/react-utilities: 27 const cloneTriggerTree = (child: React.ReactNode, triggerProps: TTriggerProps): React.ReactElement => { -@fluentui/react-utilities: ~~~~~~~~~~~~~ -@fluentui/react-utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/react-utilities: ../../node_modules/@types/react/index.d.ts:326:14 -@fluentui/react-utilities: 326 function cloneElement

( -@fluentui/react-utilities: ~~~~~~~~~~~~ -@fluentui/react-utilities: The last overload is declared here. -@fluentui/react-utilities: Found 2 errors in 2 files. -@fluentui/react-utilities: Errors Files -@fluentui/react-utilities: 1 src/compose/types.ts:106 -@fluentui/react-utilities: 1 src/utils/applyTriggerPropsToChildren.ts:39 -@fluentui/react-utilities: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-utilities: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-utilities: [XX:XX:XX XM] x Other tasks that did not complete: [ts:esm] -@fluentui/react-utilities: error Command failed with exit code 1. -@fluentui/merge-styles: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/merge-styles: [XX:XX:XX XM] x ------------------------------------ -@fluentui/merge-styles: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/merge-styles/tsconfig.json" -@fluentui/merge-styles: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/merge-styles: at ChildProcess.emit (events.js:314:20) -@fluentui/merge-styles: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/merge-styles: at maybeClose (internal/child_process.js:1022:16) -@fluentui/merge-styles: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/merge-styles: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/merge-styles: [XX:XX:XX XM] x stdout: -@fluentui/merge-styles: [XX:XX:XX XM] x src/mergeStyleSets.ts:106:23 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/merge-styles: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/merge-styles: 106 ): IProcessedStyleSet; -@fluentui/merge-styles: ~~~~~~~~~ -@fluentui/merge-styles: src/mergeStyleSets.ts:103:30 -@fluentui/merge-styles: 103 export function mergeCssSets( -@fluentui/merge-styles: ~~~~~~~~~ -@fluentui/merge-styles: This type parameter probably needs an `extends object` constraint. -@fluentui/merge-styles: src/mergeStyleSets.ts:103:30 -@fluentui/merge-styles: 103 export function mergeCssSets( -@fluentui/merge-styles: ~~~~~~~~~ -@fluentui/merge-styles: This type parameter probably needs an `extends object` constraint. -@fluentui/merge-styles: src/mergeStyleSets.ts:120:23 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/merge-styles: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/merge-styles: 120 ): IProcessedStyleSet; -@fluentui/merge-styles: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/merge-styles: src/mergeStyleSets.ts:138:23 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/merge-styles: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/merge-styles: 138 ): IProcessedStyleSet; -@fluentui/merge-styles: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/merge-styles: src/mergeStyleSets.ts:173:23 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/merge-styles: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/merge-styles: 173 ): IProcessedStyleSet; -@fluentui/merge-styles: ~~~~~~~~~ -@fluentui/merge-styles: src/mergeStyleSets.ts:170:30 -@fluentui/merge-styles: 170 export function mergeCssSets( -@fluentui/merge-styles: ~~~~~~~~~ -@fluentui/merge-styles: This type parameter probably needs an `extends object` constraint. -@fluentui/merge-styles: src/mergeStyleSets.ts:170:30 -@fluentui/merge-styles: 170 export function mergeCssSets( -@fluentui/merge-styles: ~~~~~~~~~ -@fluentui/merge-styles: This type parameter probably needs an `extends object` constraint. -@fluentui/merge-styles: src/mergeStyleSets.ts:216:24 - error TS7015: Element implicitly has an 'any' type because index expression is not of type 'number'. -@fluentui/merge-styles: 216 classNameSet[styleSetArea] = classes.concat([registration.className]).join(' '); -@fluentui/merge-styles: ~~~~~~~~~~~~ -@fluentui/merge-styles: src/mergeStyleSets.ts:219:22 - error TS7015: Element implicitly has an 'any' type because index expression is not of type 'number'. -@fluentui/merge-styles: 219 classNameSet[styleSetArea] = classes.join(' '); -@fluentui/merge-styles: ~~~~~~~~~~~~ -@fluentui/merge-styles: Found 6 errors in the same file, starting at: src/mergeStyleSets.ts:106 -@fluentui/merge-styles: [XX:XX:XX XM] x ------------------------------------ -@fluentui/merge-styles: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/merge-styles: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/merge-styles: error Command failed with exit code 1. -@fluentui/react-northstar-styles-renderer: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-northstar-styles-renderer: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-northstar-styles-renderer: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-northstar-styles-renderer: error Command failed with exit code 1. -@fluentui/react-positioning: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react-positioning: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-positioning: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --baseUrl "." --rootDir "./src" --project "tsconfig.lib.json" -@fluentui/react-positioning: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-positioning: at ChildProcess.emit (events.js:314:20) -@fluentui/react-positioning: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-positioning: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-positioning: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-positioning: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-positioning: [XX:XX:XX XM] x stdout: -@fluentui/react-positioning: [XX:XX:XX XM] x src/createVirtualElementFromClick.ts:14:5 - error TS2739: Type '{ left: number; top: number; right: number; bottom: number; height: number; width: number; }' is missing the following properties from type 'ClientRect': x, y, toJSON -@fluentui/react-positioning: 14 return { -@fluentui/react-positioning: ~~~~~~~~ -@fluentui/react-positioning: 15 left, -@fluentui/react-positioning: ~~~~~~~~~~~ -@fluentui/react-positioning: ... -@fluentui/react-positioning: 21 width: 1, -@fluentui/react-positioning: ~~~~~~~~~~~~~~~ -@fluentui/react-positioning: 22 }; -@fluentui/react-positioning: ~~~~~~ -@fluentui/react-positioning: Found 1 error in src/createVirtualElementFromClick.ts:14 -@fluentui/react-positioning: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-positioning: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-positioning: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react-positioning: error Command failed with exit code 1. -@fluentui/jest-serializer-merge-styles: [XX:XX:XX XM] x Error detected while running '_wrapFunction' -@fluentui/jest-serializer-merge-styles: [XX:XX:XX XM] x ------------------------------------ -@fluentui/jest-serializer-merge-styles: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/jest-serializer-merge-styles/tsconfig.json" -@fluentui/jest-serializer-merge-styles: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/jest-serializer-merge-styles: at ChildProcess.emit (events.js:314:20) -@fluentui/jest-serializer-merge-styles: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/jest-serializer-merge-styles: at maybeClose (internal/child_process.js:1022:16) -@fluentui/jest-serializer-merge-styles: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/jest-serializer-merge-styles: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/jest-serializer-merge-styles: [XX:XX:XX XM] x stdout: -@fluentui/jest-serializer-merge-styles: [XX:XX:XX XM] x ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/jest-serializer-merge-styles: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/jest-serializer-merge-styles: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/jest-serializer-merge-styles: ~~~~~~~~~ -@fluentui/jest-serializer-merge-styles: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/jest-serializer-merge-styles: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/jest-serializer-merge-styles: ~~~~~~~~~ -@fluentui/jest-serializer-merge-styles: This type parameter probably needs an `extends object` constraint. -@fluentui/jest-serializer-merge-styles: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/jest-serializer-merge-styles: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/jest-serializer-merge-styles: ~~~~~~~~~ -@fluentui/jest-serializer-merge-styles: This type parameter probably needs an `extends object` constraint. -@fluentui/jest-serializer-merge-styles: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/jest-serializer-merge-styles: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/jest-serializer-merge-styles: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/jest-serializer-merge-styles: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/jest-serializer-merge-styles: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/jest-serializer-merge-styles: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/jest-serializer-merge-styles: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/jest-serializer-merge-styles: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/jest-serializer-merge-styles: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/jest-serializer-merge-styles: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/jest-serializer-merge-styles: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/jest-serializer-merge-styles: ~~~~~~~~~ -@fluentui/jest-serializer-merge-styles: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/jest-serializer-merge-styles: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/jest-serializer-merge-styles: ~~~~~~~~~ -@fluentui/jest-serializer-merge-styles: This type parameter probably needs an `extends object` constraint. -@fluentui/jest-serializer-merge-styles: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/jest-serializer-merge-styles: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/jest-serializer-merge-styles: ~~~~~~~~~ -@fluentui/jest-serializer-merge-styles: This type parameter probably needs an `extends object` constraint. -@fluentui/jest-serializer-merge-styles: Found 4 errors in the same file, starting at: ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/jest-serializer-merge-styles: [XX:XX:XX XM] x ------------------------------------ -@fluentui/jest-serializer-merge-styles: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/jest-serializer-merge-styles: [XX:XX:XX XM] x Other tasks that did not complete: [ts:esm] -@fluentui/jest-serializer-merge-styles: error Command failed with exit code 1. -@fluentui/react-northstar-emotion-renderer: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-northstar-emotion-renderer: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-northstar-emotion-renderer: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-northstar-emotion-renderer: error Command failed with exit code 1. -@fluentui/react-northstar-fela-renderer: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-northstar-fela-renderer: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-northstar-fela-renderer: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-northstar-fela-renderer: error Command failed with exit code 1. -@fluentui/utilities: [XX:XX:XX XM] x Error detected while running '_wrapFunction' -@fluentui/utilities: [XX:XX:XX XM] x ------------------------------------ -@fluentui/utilities: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/utilities/tsconfig.json" -@fluentui/utilities: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/utilities: at ChildProcess.emit (events.js:314:20) -@fluentui/utilities: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/utilities: at maybeClose (internal/child_process.js:1022:16) -@fluentui/utilities: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/utilities: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/utilities: [XX:XX:XX XM] x stdout: -@fluentui/utilities: [XX:XX:XX XM] x src/BaseComponent.ts:50:18 - error TS2345: Argument of type 'this' is not assignable to parameter of type 'BaseComponent<{}, {}>'. -@fluentui/utilities: Type 'BaseComponent' is not assignable to type 'BaseComponent<{}, {}>'. -@fluentui/utilities: Types of property 'componentDidUpdate' are incompatible. -@fluentui/utilities: Type '(prevProps: TProps, prevState: TState) => void' is not assignable to type '(prevProps: {}, prevState: {}) => void'. -@fluentui/utilities: Types of parameters 'prevState' and 'prevState' are incompatible. -@fluentui/utilities: Type '{}' is not assignable to type 'TState'. -@fluentui/utilities: 'TState' could be instantiated with an arbitrary type which could be unrelated to '{}'. -@fluentui/utilities: 50 _makeAllSafe(this, BaseComponent.prototype, [ -@fluentui/utilities: ~~~~ -@fluentui/utilities: src/asAsync.tsx:70:29 - error TS2769: No overload matches this call. -@fluentui/utilities: The last overload gave the following error. -@fluentui/utilities: Argument of type 'ElementType' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'. -@fluentui/utilities: Type 'ComponentClass' is not assignable to type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'. -@fluentui/utilities: Type 'ComponentClass' is not assignable to type 'ComponentClass<{}, any>'. -@fluentui/utilities: Types of parameters 'props' and 'props' are incompatible. -@fluentui/utilities: Type '{}' is not assignable to type 'TProps'. -@fluentui/utilities: 'TProps' could be instantiated with an arbitrary type which could be unrelated to '{}'. -@fluentui/utilities: 70 React.createElement(Component, { ...rest, ref: forwardedRef }) -@fluentui/utilities: ~~~~~~~~~ -@fluentui/utilities: ../../node_modules/@types/react/index.d.ts:290:14 -@fluentui/utilities: 290 function createElement

( -@fluentui/utilities: ~~~~~~~~~~~~~ -@fluentui/utilities: The last overload is declared here. -@fluentui/utilities: src/componentAs/composeComponentAs.tsx:25:17 - error TS2322: Type 'TProps & { defaultRender: IComponentAs; }' is not assignable to type 'IntrinsicAttributes & TProps & { defaultRender?: ComponentType | undefined; } & { children?: ReactNode; }'. -@fluentui/utilities: Type 'TProps & { defaultRender: IComponentAs; }' is not assignable to type '{ defaultRender?: ComponentType | undefined; }'. -@fluentui/utilities: Types of property 'defaultRender' are incompatible. -@fluentui/utilities: Type 'IComponentAs' is not assignable to type 'ComponentType | undefined'. -@fluentui/utilities: 25 return ; -@fluentui/utilities: ~~~~~ -@fluentui/utilities: src/componentAs/composeComponentAs.tsx:36:15 - error TS2322: Type 'TProps & { defaultRender: IComponentAs; }' is not assignable to type 'IntrinsicAttributes & TProps & { defaultRender?: ComponentType | undefined; } & { children?: ReactNode; }'. -@fluentui/utilities: Type 'TProps & { defaultRender: IComponentAs; }' is not assignable to type '{ defaultRender?: ComponentType | undefined; }'. -@fluentui/utilities: Types of property 'defaultRender' are incompatible. -@fluentui/utilities: Type 'IComponentAs' is not assignable to type 'ComponentType | undefined'. -@fluentui/utilities: Type 'ComponentClass, any>' is not assignable to type 'ComponentType | undefined'. -@fluentui/utilities: Type 'ComponentClass, any>' is not assignable to type 'ComponentClass'. -@fluentui/utilities: Types of property 'propTypes' are incompatible. -@fluentui/utilities: Type 'WeakValidationMap> | undefined' is not assignable to type 'WeakValidationMap | undefined'. -@fluentui/utilities: Type 'WeakValidationMap>' is not assignable to type 'WeakValidationMap'. -@fluentui/utilities: Type '(null extends IComponentAsProps[K] ? Validator[K] | (IComponentAsProps[K] & null) | undefined> : undefined extends IComponentAsProps<...>[K] ? Validator<...> : Validator<...>) | undefined' is not assignable to type '(null extends TProps[K] ? Validator : undefined extends TProps[K] ? Validator<...> : Validator<...>) | undefined'. -@fluentui/utilities: Type 'null extends IComponentAsProps[K] ? Validator[K] | (IComponentAsProps[K] & null) | undefined> : undefined extends IComponentAsProps<...>[K] ? Validator<...> : Validator<...>' is not assignable to type '(null extends TProps[K] ? Validator : undefined extends TProps[K] ? Validator<...> : Validator<...>) | undefined'. -@fluentui/utilities: Type 'Validator[K] | (IComponentAsProps[K] & null) | undefined> | (undefined extends IComponentAsProps<...>[K] ? Validator<...> : Validator<...>)' is not assignable to type '(null extends TProps[K] ? Validator : undefined extends TProps[K] ? Validator<...> : Validator<...>) | undefined'. -@fluentui/utilities: Type 'Validator[K] | (IComponentAsProps[K] & null) | undefined>' is not assignable to type 'null extends TProps[K] ? Validator : undefined extends TProps[K] ? Validator<...> : Validator<...>'. -@fluentui/utilities: Type 'null extends IComponentAsProps[K] ? Validator[K] | (IComponentAsProps[K] & null) | undefined> : undefined extends IComponentAsProps<...>[K] ? Validator<...> : Validator<...>' is not assignable to type 'null extends TProps[K] ? Validator : undefined extends TProps[K] ? Validator<...> : Validator<...>'. -@fluentui/utilities: Type 'Validator[K] | (IComponentAsProps[K] & null) | undefined> | (undefined extends IComponentAsProps<...>[K] ? Validator<...> : Validator<...>)' is not assignable to type 'null extends TProps[K] ? Validator : undefined extends TProps[K] ? Validator<...> : Validator<...>'. -@fluentui/utilities: Type 'Validator[K] | (IComponentAsProps[K] & null) | undefined>' is not assignable to type 'null extends TProps[K] ? Validator : undefined extends TProps[K] ? Validator<...> : Validator<...>'. -@fluentui/utilities: 36 return ; -@fluentui/utilities: ~~~~~ -@fluentui/utilities: src/componentAs/composeComponentAs.tsx:36:82 - error TS2345: Argument of type 'ComponentType' is not assignable to parameter of type 'IComponentAs'. -@fluentui/utilities: Type 'ComponentClass' is not assignable to type 'IComponentAs'. -@fluentui/utilities: Type 'ComponentClass' is not assignable to type 'ComponentClass, any>'. -@fluentui/utilities: Types of property 'propTypes' are incompatible. -@fluentui/utilities: Type 'WeakValidationMap | undefined' is not assignable to type 'WeakValidationMap> | undefined'. -@fluentui/utilities: Type 'WeakValidationMap' is not assignable to type 'WeakValidationMap>'. -@fluentui/utilities: Type '"defaultRender" | keyof TProps' is not assignable to type 'keyof TProps'. -@fluentui/utilities: Type 'string' is not assignable to type 'keyof TProps'. -@fluentui/utilities: 36 return ; -@fluentui/utilities: ~~~~~~~~~~~~~ -@fluentui/utilities: src/merge.ts:32:22 - error TS2345: Argument of type 'T[Extract] | {}' is not assignable to parameter of type 'Object'. -@fluentui/utilities: Type 'T[Extract]' is not assignable to type 'Object'. -@fluentui/utilities: Type 'T[string]' is not assignable to type 'Object'. -@fluentui/utilities: 32 : _merge(target[name] || {}, value, circularReferences)) as T[Extract]; -@fluentui/utilities: ~~~~~~~~~~~~~~~~~~ -@fluentui/utilities: src/styled.tsx:25:89 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/utilities: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/utilities: 25 export type StyleFunction = IStyleFunctionOrObject & { -@fluentui/utilities: ~~~~~~~~~ -@fluentui/utilities: src/styled.tsx:25:40 -@fluentui/utilities: 25 export type StyleFunction = IStyleFunctionOrObject & { -@fluentui/utilities: ~~~~~~~~~ -@fluentui/utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/utilities: src/styled.tsx:25:40 -@fluentui/utilities: 25 export type StyleFunction = IStyleFunctionOrObject & { -@fluentui/utilities: ~~~~~~~~~ -@fluentui/utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/utilities: src/styled.tsx:27:58 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/utilities: 27 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/utilities: ~~~~~~~~~ -@fluentui/utilities: src/styled.tsx:25:40 -@fluentui/utilities: 25 export type StyleFunction = IStyleFunctionOrObject & { -@fluentui/utilities: ~~~~~~~~~ -@fluentui/utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/utilities: src/warn/warnControlledUsage.ts:85:39 - error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. -@fluentui/utilities: 85 `Warning: You provided a '${valueProp}' prop to a ${componentName} without an '${onChangeProp}' handler. ` + -@fluentui/utilities: ~~~~~~~~~ -@fluentui/utilities: src/warn/warnControlledUsage.ts:85:92 - error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. -@fluentui/utilities: 85 `Warning: You provided a '${valueProp}' prop to a ${componentName} without an '${onChangeProp}' handler. ` + -@fluentui/utilities: ~~~~~~~~~~~~ -@fluentui/utilities: src/warn/warnControlledUsage.ts:86:88 - error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. -@fluentui/utilities: 86 `This will render a read-only field. If the field should be mutable use '${defaultValueProp}'. ` + -@fluentui/utilities: ~~~~~~~~~~~~~~~~ -@fluentui/utilities: src/warn/warnControlledUsage.ts:87:32 - error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. -@fluentui/utilities: 87 `Otherwise, set '${onChangeProp}'${readOnlyProp ? ` or '${readOnlyProp}'` : ''}.`, -@fluentui/utilities: ~~~~~~~~~~~~ -@fluentui/utilities: src/warn/warnControlledUsage.ts:87:71 - error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. -@fluentui/utilities: 87 `Otherwise, set '${onChangeProp}'${readOnlyProp ? ` or '${readOnlyProp}'` : ''}.`, -@fluentui/utilities: ~~~~~~~~~~~~ -@fluentui/utilities: src/warn/warnControlledUsage.ts:96:42 - error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. -@fluentui/utilities: 96 `Warning: You provided both '${valueProp}' and '${defaultValueProp}' to a ${componentName}. ` + -@fluentui/utilities: ~~~~~~~~~ -@fluentui/utilities: src/warn/warnControlledUsage.ts:96:61 - error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. -@fluentui/utilities: 96 `Warning: You provided both '${valueProp}' and '${defaultValueProp}' to a ${componentName}. ` + -@fluentui/utilities: ~~~~~~~~~~~~~~~~ -@fluentui/utilities: src/warn/warnControlledUsage.ts:97:91 - error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. -@fluentui/utilities: 97 `Form fields must be either controlled or uncontrolled (specify either the '${valueProp}' prop, ` + -@fluentui/utilities: ~~~~~~~~~ -@fluentui/utilities: src/warn/warnControlledUsage.ts:98:24 - error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. -@fluentui/utilities: 98 `or the '${defaultValueProp}' prop, but not both). Decide between using a controlled or uncontrolled ` + -@fluentui/utilities: ~~~~~~~~~~~~~~~~ -@fluentui/utilities: Found 17 errors in 6 files. -@fluentui/utilities: Errors Files -@fluentui/utilities: 1 src/BaseComponent.ts:50 -@fluentui/utilities: 1 src/asAsync.tsx:70 -@fluentui/utilities: 3 src/componentAs/composeComponentAs.tsx:25 -@fluentui/utilities: 1 src/merge.ts:32 -@fluentui/utilities: 2 src/styled.tsx:25 -@fluentui/utilities: 9 src/warn/warnControlledUsage.ts:85 -@fluentui/utilities: [XX:XX:XX XM] x ------------------------------------ -@fluentui/utilities: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/utilities: [XX:XX:XX XM] x Other tasks that did not complete: [ts:esm] -@fluentui/utilities: error Command failed with exit code 1. -@fluentui/react-bindings: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-bindings: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-bindings: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-bindings: error Command failed with exit code 1. -@fluentui/react-hooks: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react-hooks: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-hooks: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-hooks/tsconfig.json" -@fluentui/react-hooks: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-hooks: at ChildProcess.emit (events.js:314:20) -@fluentui/react-hooks: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-hooks: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-hooks: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-hooks: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-hooks: [XX:XX:XX XM] x stdout: -@fluentui/react-hooks: [XX:XX:XX XM] x ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-hooks: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-hooks: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-hooks: ~~~~~~~~~ -@fluentui/react-hooks: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-hooks: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-hooks: ~~~~~~~~~ -@fluentui/react-hooks: This type parameter probably needs an `extends object` constraint. -@fluentui/react-hooks: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-hooks: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-hooks: ~~~~~~~~~ -@fluentui/react-hooks: This type parameter probably needs an `extends object` constraint. -@fluentui/react-hooks: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-hooks: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-hooks: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-hooks: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-hooks: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-hooks: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-hooks: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-hooks: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-hooks: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-hooks: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-hooks: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-hooks: ~~~~~~~~~ -@fluentui/react-hooks: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-hooks: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-hooks: ~~~~~~~~~ -@fluentui/react-hooks: This type parameter probably needs an `extends object` constraint. -@fluentui/react-hooks: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-hooks: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-hooks: ~~~~~~~~~ -@fluentui/react-hooks: This type parameter probably needs an `extends object` constraint. -@fluentui/react-hooks: ../utilities/lib/styled.d.ts:17:97 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-hooks: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-hooks: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-hooks: ~~~~~~~~~ -@fluentui/react-hooks: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-hooks: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-hooks: ~~~~~~~~~ -@fluentui/react-hooks: This type parameter probably needs an `extends object` constraint. -@fluentui/react-hooks: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-hooks: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-hooks: ~~~~~~~~~ -@fluentui/react-hooks: This type parameter probably needs an `extends object` constraint. -@fluentui/react-hooks: ../utilities/lib/styled.d.ts:19:60 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-hooks: 19 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/react-hooks: ~~~~~~~~~ -@fluentui/react-hooks: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-hooks: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-hooks: ~~~~~~~~~ -@fluentui/react-hooks: This type parameter probably needs an `extends object` constraint. -@fluentui/react-hooks: Found 6 errors in 2 files. -@fluentui/react-hooks: Errors Files -@fluentui/react-hooks: 4 ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/react-hooks: 2 ../utilities/lib/styled.d.ts:17 -@fluentui/react-hooks: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-hooks: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-hooks: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react-hooks: error Command failed with exit code 1. -@fluentui/theme: [XX:XX:XX XM] x Error detected while running '_wrapFunction' -@fluentui/theme: [XX:XX:XX XM] x ------------------------------------ -@fluentui/theme: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/theme/tsconfig.json" -@fluentui/theme: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/theme: at ChildProcess.emit (events.js:314:20) -@fluentui/theme: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/theme: at maybeClose (internal/child_process.js:1022:16) -@fluentui/theme: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/theme: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/theme: [XX:XX:XX XM] x stdout: -@fluentui/theme: [XX:XX:XX XM] x ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/theme: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/theme: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/theme: ~~~~~~~~~ -@fluentui/theme: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/theme: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/theme: ~~~~~~~~~ -@fluentui/theme: This type parameter probably needs an `extends object` constraint. -@fluentui/theme: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/theme: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/theme: ~~~~~~~~~ -@fluentui/theme: This type parameter probably needs an `extends object` constraint. -@fluentui/theme: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/theme: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/theme: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/theme: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/theme: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/theme: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/theme: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/theme: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/theme: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/theme: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/theme: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/theme: ~~~~~~~~~ -@fluentui/theme: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/theme: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/theme: ~~~~~~~~~ -@fluentui/theme: This type parameter probably needs an `extends object` constraint. -@fluentui/theme: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/theme: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/theme: ~~~~~~~~~ -@fluentui/theme: This type parameter probably needs an `extends object` constraint. -@fluentui/theme: src/utilities/makeSemanticColors.ts:220:10 - error TS2352: Conversion of type 'Partial' to type 'TResult' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first. -@fluentui/theme: 'TResult' could be instantiated with an arbitrary type which could be unrelated to 'Partial'. -@fluentui/theme: 220 return result as TResult; -@fluentui/theme: ~~~~~~~~~~~~~~~~~ -@fluentui/theme: ../utilities/lib/styled.d.ts:17:97 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/theme: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/theme: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/theme: ~~~~~~~~~ -@fluentui/theme: ../utilities/lib/styled.d.ts:17:48 -@fluentui/theme: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/theme: ~~~~~~~~~ -@fluentui/theme: This type parameter probably needs an `extends object` constraint. -@fluentui/theme: ../utilities/lib/styled.d.ts:17:48 -@fluentui/theme: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/theme: ~~~~~~~~~ -@fluentui/theme: This type parameter probably needs an `extends object` constraint. -@fluentui/theme: ../utilities/lib/styled.d.ts:19:60 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/theme: 19 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/theme: ~~~~~~~~~ -@fluentui/theme: ../utilities/lib/styled.d.ts:17:48 -@fluentui/theme: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/theme: ~~~~~~~~~ -@fluentui/theme: This type parameter probably needs an `extends object` constraint. -@fluentui/theme: Found 7 errors in 3 files. -@fluentui/theme: Errors Files -@fluentui/theme: 4 ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/theme: 1 src/utilities/makeSemanticColors.ts:220 -@fluentui/theme: 2 ../utilities/lib/styled.d.ts:17 -@fluentui/theme: [XX:XX:XX XM] x ------------------------------------ -@fluentui/theme: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/theme: [XX:XX:XX XM] x Other tasks that did not complete: [ts:esm] -@fluentui/theme: error Command failed with exit code 1. -@fluentui/react-icons-northstar: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-icons-northstar: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-icons-northstar: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-icons-northstar: error Command failed with exit code 1. -@fluentui/react-telemetry: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-telemetry: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-telemetry: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-telemetry: error Command failed with exit code 1. -@fluentui/style-utilities: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/style-utilities: [XX:XX:XX XM] x ------------------------------------ -@fluentui/style-utilities: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/style-utilities/tsconfig.json" -@fluentui/style-utilities: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/style-utilities: at ChildProcess.emit (events.js:314:20) -@fluentui/style-utilities: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/style-utilities: at maybeClose (internal/child_process.js:1022:16) -@fluentui/style-utilities: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/style-utilities: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/style-utilities: [XX:XX:XX XM] x stdout: -@fluentui/style-utilities: [XX:XX:XX XM] x ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/style-utilities: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/style-utilities: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/style-utilities: ~~~~~~~~~ -@fluentui/style-utilities: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/style-utilities: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/style-utilities: ~~~~~~~~~ -@fluentui/style-utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/style-utilities: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/style-utilities: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/style-utilities: ~~~~~~~~~ -@fluentui/style-utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/style-utilities: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/style-utilities: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/style-utilities: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/style-utilities: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/style-utilities: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/style-utilities: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/style-utilities: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/style-utilities: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/style-utilities: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/style-utilities: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/style-utilities: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/style-utilities: ~~~~~~~~~ -@fluentui/style-utilities: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/style-utilities: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/style-utilities: ~~~~~~~~~ -@fluentui/style-utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/style-utilities: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/style-utilities: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/style-utilities: ~~~~~~~~~ -@fluentui/style-utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/style-utilities: ../utilities/lib/styled.d.ts:17:97 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/style-utilities: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/style-utilities: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/style-utilities: ~~~~~~~~~ -@fluentui/style-utilities: ../utilities/lib/styled.d.ts:17:48 -@fluentui/style-utilities: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/style-utilities: ~~~~~~~~~ -@fluentui/style-utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/style-utilities: ../utilities/lib/styled.d.ts:17:48 -@fluentui/style-utilities: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/style-utilities: ~~~~~~~~~ -@fluentui/style-utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/style-utilities: ../utilities/lib/styled.d.ts:19:60 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/style-utilities: 19 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/style-utilities: ~~~~~~~~~ -@fluentui/style-utilities: ../utilities/lib/styled.d.ts:17:48 -@fluentui/style-utilities: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/style-utilities: ~~~~~~~~~ -@fluentui/style-utilities: This type parameter probably needs an `extends object` constraint. -@fluentui/style-utilities: Found 6 errors in 2 files. -@fluentui/style-utilities: Errors Files -@fluentui/style-utilities: 4 ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/style-utilities: 2 ../utilities/lib/styled.d.ts:17 -@fluentui/style-utilities: [XX:XX:XX XM] x ------------------------------------ -@fluentui/style-utilities: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/style-utilities: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/style-utilities: error Command failed with exit code 1. -@fluentui/react-northstar: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-northstar: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-northstar: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-northstar: error Command failed with exit code 1. -@fluentui/perf-test-react-components: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/perf-test-react-components: [XX:XX:XX XM] x ------------------------------------ -@fluentui/perf-test-react-components: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/perf-test-react-components/tsconfig.json" -@fluentui/perf-test-react-components: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/perf-test-react-components: at ChildProcess.emit (events.js:314:20) -@fluentui/perf-test-react-components: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/perf-test-react-components: at maybeClose (internal/child_process.js:1022:16) -@fluentui/perf-test-react-components: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/perf-test-react-components: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/perf-test-react-components: [XX:XX:XX XM] x stdout: -@fluentui/perf-test-react-components: [XX:XX:XX XM] x ../../packages/react-positioning/src/createVirtualElementFromClick.ts:14:5 - error TS2739: Type '{ left: number; top: number; right: number; bottom: number; height: number; width: number; }' is missing the following properties from type 'ClientRect': x, y, toJSON -@fluentui/perf-test-react-components: 14 return { -@fluentui/perf-test-react-components: ~~~~~~~~ -@fluentui/perf-test-react-components: 15 left, -@fluentui/perf-test-react-components: ~~~~~~~~~~~ -@fluentui/perf-test-react-components: ... -@fluentui/perf-test-react-components: 21 width: 1, -@fluentui/perf-test-react-components: ~~~~~~~~~~~~~~~ -@fluentui/perf-test-react-components: 22 }; -@fluentui/perf-test-react-components: ~~~~~~ -@fluentui/perf-test-react-components: ../../packages/react-theme/src/themeToTokensObject.ts:15:28 - error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. -@fluentui/perf-test-react-components: 15 tokens[key] = `var(--${key})`; -@fluentui/perf-test-react-components: ~~~ -@fluentui/perf-test-react-components: ../../packages/react-utilities/src/compose/types.ts:106:38 - error TS2344: Type 'Props' does not satisfy the constraint '{ children?: unknown; }'. -@fluentui/perf-test-react-components: 106 ? WithSlotRenderFunction -@fluentui/perf-test-react-components: ~~~~~ -@fluentui/perf-test-react-components: ../../packages/react-utilities/src/compose/types.ts:105:54 -@fluentui/perf-test-react-components: 105 : Type extends React.ComponentType // Component types like `typeof Button` -@fluentui/perf-test-react-components: ~~~~~ -@fluentui/perf-test-react-components: This type parameter probably needs an `extends object` constraint. -@fluentui/perf-test-react-components: ../../packages/react-utilities/src/utils/applyTriggerPropsToChildren.ts:39:38 - error TS2769: No overload matches this call. -@fluentui/perf-test-react-components: The last overload gave the following error. -@fluentui/perf-test-react-components: Argument of type 'TTriggerProps' is not assignable to parameter of type '(Partial & Attributes) | undefined'. -@fluentui/perf-test-react-components: Type 'TTriggerProps' is not assignable to type 'Partial & Attributes'. -@fluentui/perf-test-react-components: Type 'TTriggerProps' is not assignable to type 'Partial'. -@fluentui/perf-test-react-components: 39 return React.cloneElement(child, triggerProps); -@fluentui/perf-test-react-components: ~~~~~~~~~~~~ -@fluentui/perf-test-react-components: ../../packages/react-utilities/src/utils/applyTriggerPropsToChildren.ts:27:27 -@fluentui/perf-test-react-components: 27 const cloneTriggerTree = (child: React.ReactNode, triggerProps: TTriggerProps): React.ReactElement => { -@fluentui/perf-test-react-components: ~~~~~~~~~~~~~ -@fluentui/perf-test-react-components: This type parameter probably needs an `extends object` constraint. -@fluentui/perf-test-react-components: ../../packages/react-utilities/src/utils/applyTriggerPropsToChildren.ts:27:27 -@fluentui/perf-test-react-components: 27 const cloneTriggerTree = (child: React.ReactNode, triggerProps: TTriggerProps): React.ReactElement => { -@fluentui/perf-test-react-components: ~~~~~~~~~~~~~ -@fluentui/perf-test-react-components: This type parameter probably needs an `extends object` constraint. -@fluentui/perf-test-react-components: ../../packages/react-utilities/src/utils/applyTriggerPropsToChildren.ts:27:27 -@fluentui/perf-test-react-components: 27 const cloneTriggerTree = (child: React.ReactNode, triggerProps: TTriggerProps): React.ReactElement => { -@fluentui/perf-test-react-components: ~~~~~~~~~~~~~ -@fluentui/perf-test-react-components: This type parameter probably needs an `extends object` constraint. -@fluentui/perf-test-react-components: ../../node_modules/@types/react/index.d.ts:326:14 -@fluentui/perf-test-react-components: 326 function cloneElement

( -@fluentui/perf-test-react-components: ~~~~~~~~~~~~ -@fluentui/perf-test-react-components: The last overload is declared here. -@fluentui/perf-test-react-components: Found 4 errors in 4 files. -@fluentui/perf-test-react-components: Errors Files -@fluentui/perf-test-react-components: 1 ../../packages/react-positioning/src/createVirtualElementFromClick.ts:14 -@fluentui/perf-test-react-components: 1 ../../packages/react-theme/src/themeToTokensObject.ts:15 -@fluentui/perf-test-react-components: 1 ../../packages/react-utilities/src/compose/types.ts:106 -@fluentui/perf-test-react-components: 1 ../../packages/react-utilities/src/utils/applyTriggerPropsToChildren.ts:39 -@fluentui/perf-test-react-components: [XX:XX:XX XM] x ------------------------------------ -@fluentui/perf-test-react-components: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/perf-test-react-components: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/perf-test-react-components: error Command failed with exit code 1. -@fluentui/vr-tests-react-components: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/vr-tests-react-components: [XX:XX:XX XM] x ------------------------------------ -@fluentui/vr-tests-react-components: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/vr-tests-react-components/tsconfig.json" -@fluentui/vr-tests-react-components: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/vr-tests-react-components: at ChildProcess.emit (events.js:314:20) -@fluentui/vr-tests-react-components: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/vr-tests-react-components: at maybeClose (internal/child_process.js:1022:16) -@fluentui/vr-tests-react-components: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/vr-tests-react-components: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/vr-tests-react-components: [XX:XX:XX XM] x stdout: -@fluentui/vr-tests-react-components: [XX:XX:XX XM] x ../../packages/react-positioning/src/createVirtualElementFromClick.ts:14:5 - error TS2739: Type '{ left: number; top: number; right: number; bottom: number; height: number; width: number; }' is missing the following properties from type 'ClientRect': x, y, toJSON -@fluentui/vr-tests-react-components: 14 return { -@fluentui/vr-tests-react-components: ~~~~~~~~ -@fluentui/vr-tests-react-components: 15 left, -@fluentui/vr-tests-react-components: ~~~~~~~~~~~ -@fluentui/vr-tests-react-components: ... -@fluentui/vr-tests-react-components: 21 width: 1, -@fluentui/vr-tests-react-components: ~~~~~~~~~~~~~~~ -@fluentui/vr-tests-react-components: 22 }; -@fluentui/vr-tests-react-components: ~~~~~~ -@fluentui/vr-tests-react-components: ../../packages/react-theme/src/themeToTokensObject.ts:15:28 - error TS2731: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. -@fluentui/vr-tests-react-components: 15 tokens[key] = `var(--${key})`; -@fluentui/vr-tests-react-components: ~~~ -@fluentui/vr-tests-react-components: ../../packages/react-utilities/src/compose/types.ts:106:38 - error TS2344: Type 'Props' does not satisfy the constraint '{ children?: unknown; }'. -@fluentui/vr-tests-react-components: 106 ? WithSlotRenderFunction -@fluentui/vr-tests-react-components: ~~~~~ -@fluentui/vr-tests-react-components: ../../packages/react-utilities/src/compose/types.ts:105:54 -@fluentui/vr-tests-react-components: 105 : Type extends React.ComponentType // Component types like `typeof Button` -@fluentui/vr-tests-react-components: ~~~~~ -@fluentui/vr-tests-react-components: This type parameter probably needs an `extends object` constraint. -@fluentui/vr-tests-react-components: ../../packages/react-utilities/src/utils/applyTriggerPropsToChildren.ts:39:38 - error TS2769: No overload matches this call. -@fluentui/vr-tests-react-components: The last overload gave the following error. -@fluentui/vr-tests-react-components: Argument of type 'TTriggerProps' is not assignable to parameter of type '(Partial & Attributes) | undefined'. -@fluentui/vr-tests-react-components: Type 'TTriggerProps' is not assignable to type 'Partial & Attributes'. -@fluentui/vr-tests-react-components: Type 'TTriggerProps' is not assignable to type 'Partial'. -@fluentui/vr-tests-react-components: 39 return React.cloneElement(child, triggerProps); -@fluentui/vr-tests-react-components: ~~~~~~~~~~~~ -@fluentui/vr-tests-react-components: ../../packages/react-utilities/src/utils/applyTriggerPropsToChildren.ts:27:27 -@fluentui/vr-tests-react-components: 27 const cloneTriggerTree = (child: React.ReactNode, triggerProps: TTriggerProps): React.ReactElement => { -@fluentui/vr-tests-react-components: ~~~~~~~~~~~~~ -@fluentui/vr-tests-react-components: This type parameter probably needs an `extends object` constraint. -@fluentui/vr-tests-react-components: ../../packages/react-utilities/src/utils/applyTriggerPropsToChildren.ts:27:27 -@fluentui/vr-tests-react-components: 27 const cloneTriggerTree = (child: React.ReactNode, triggerProps: TTriggerProps): React.ReactElement => { -@fluentui/vr-tests-react-components: ~~~~~~~~~~~~~ -@fluentui/vr-tests-react-components: This type parameter probably needs an `extends object` constraint. -@fluentui/vr-tests-react-components: ../../packages/react-utilities/src/utils/applyTriggerPropsToChildren.ts:27:27 -@fluentui/vr-tests-react-components: 27 const cloneTriggerTree = (child: React.ReactNode, triggerProps: TTriggerProps): React.ReactElement => { -@fluentui/vr-tests-react-components: ~~~~~~~~~~~~~ -@fluentui/vr-tests-react-components: This type parameter probably needs an `extends object` constraint. -@fluentui/vr-tests-react-components: ../../node_modules/@types/react/index.d.ts:326:14 -@fluentui/vr-tests-react-components: 326 function cloneElement

( -@fluentui/vr-tests-react-components: ~~~~~~~~~~~~ -@fluentui/vr-tests-react-components: The last overload is declared here. -@fluentui/vr-tests-react-components: Found 4 errors in 4 files. -@fluentui/vr-tests-react-components: Errors Files -@fluentui/vr-tests-react-components: 1 ../../packages/react-positioning/src/createVirtualElementFromClick.ts:14 -@fluentui/vr-tests-react-components: 1 ../../packages/react-theme/src/themeToTokensObject.ts:15 -@fluentui/vr-tests-react-components: 1 ../../packages/react-utilities/src/compose/types.ts:106 -@fluentui/vr-tests-react-components: 1 ../../packages/react-utilities/src/utils/applyTriggerPropsToChildren.ts:39 -@fluentui/vr-tests-react-components: [XX:XX:XX XM] x ------------------------------------ -@fluentui/vr-tests-react-components: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/vr-tests-react-components: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/vr-tests-react-components: error Command failed with exit code 1. -@fluentui/foundation-legacy: [XX:XX:XX XM] x Error detected while running '_wrapFunction' -@fluentui/foundation-legacy: [XX:XX:XX XM] x ------------------------------------ -@fluentui/foundation-legacy: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/foundation-legacy/tsconfig.json" -@fluentui/foundation-legacy: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/foundation-legacy: at ChildProcess.emit (events.js:314:20) -@fluentui/foundation-legacy: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/foundation-legacy: at maybeClose (internal/child_process.js:1022:16) -@fluentui/foundation-legacy: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/foundation-legacy: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/foundation-legacy: [XX:XX:XX XM] x stdout: -@fluentui/foundation-legacy: [XX:XX:XX XM] x src/createComponent.tsx:149:10 - error TS2352: Conversion of type '{}' to type 'TTokens' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first. -@fluentui/foundation-legacy: 'TTokens' could be instantiated with an arbitrary type which could be unrelated to '{}'. -@fluentui/foundation-legacy: 149 return tokens as TTokens; -@fluentui/foundation-legacy: ~~~~~~~~~~~~~~~~~ -@fluentui/foundation-legacy: src/next/composed.tsx:357:10 - error TS2352: Conversion of type '{}' to type 'TTokens' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first. -@fluentui/foundation-legacy: 'TTokens' could be instantiated with an arbitrary type which could be unrelated to '{}'. -@fluentui/foundation-legacy: 357 return tokens as TTokens; -@fluentui/foundation-legacy: ~~~~~~~~~~~~~~~~~ -@fluentui/foundation-legacy: src/slots.tsx:66:32 - error TS2769: No overload matches this call. -@fluentui/foundation-legacy: The last overload gave the following error. -@fluentui/foundation-legacy: Argument of type 'string | ISlot

| FunctionComponent

' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'. -@fluentui/foundation-legacy: Type 'ISlot

' is not assignable to type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'. -@fluentui/foundation-legacy: Type 'ISlot

' is not assignable to type 'FunctionComponent<{}>'. -@fluentui/foundation-legacy: Types of parameters 'componentProps' and 'props' are incompatible. -@fluentui/foundation-legacy: Type '{ children?: ReactNode; }' is not assignable to type 'PropsWithChildren

'. -@fluentui/foundation-legacy: Type '{ children?: ReactNode; }' is not assignable to type 'P'. -@fluentui/foundation-legacy: 'P' could be instantiated with an arbitrary type which could be unrelated to '{ children?: ReactNode; }'. -@fluentui/foundation-legacy: 66 return React.createElement(type, props, ...children); -@fluentui/foundation-legacy: ~~~~ -@fluentui/foundation-legacy: ../../node_modules/@types/react/index.d.ts:290:14 -@fluentui/foundation-legacy: 290 function createElement

( -@fluentui/foundation-legacy: ~~~~~~~~~~~~~ -@fluentui/foundation-legacy: The last overload is declared here. -@fluentui/foundation-legacy: ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/foundation-legacy: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/foundation-legacy: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/foundation-legacy: ~~~~~~~~~ -@fluentui/foundation-legacy: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/foundation-legacy: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/foundation-legacy: ~~~~~~~~~ -@fluentui/foundation-legacy: This type parameter probably needs an `extends object` constraint. -@fluentui/foundation-legacy: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/foundation-legacy: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/foundation-legacy: ~~~~~~~~~ -@fluentui/foundation-legacy: This type parameter probably needs an `extends object` constraint. -@fluentui/foundation-legacy: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/foundation-legacy: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/foundation-legacy: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/foundation-legacy: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/foundation-legacy: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/foundation-legacy: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/foundation-legacy: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/foundation-legacy: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/foundation-legacy: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/foundation-legacy: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/foundation-legacy: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/foundation-legacy: ~~~~~~~~~ -@fluentui/foundation-legacy: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/foundation-legacy: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/foundation-legacy: ~~~~~~~~~ -@fluentui/foundation-legacy: This type parameter probably needs an `extends object` constraint. -@fluentui/foundation-legacy: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/foundation-legacy: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/foundation-legacy: ~~~~~~~~~ -@fluentui/foundation-legacy: This type parameter probably needs an `extends object` constraint. -@fluentui/foundation-legacy: ../utilities/lib/styled.d.ts:17:97 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/foundation-legacy: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/foundation-legacy: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/foundation-legacy: ~~~~~~~~~ -@fluentui/foundation-legacy: ../utilities/lib/styled.d.ts:17:48 -@fluentui/foundation-legacy: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/foundation-legacy: ~~~~~~~~~ -@fluentui/foundation-legacy: This type parameter probably needs an `extends object` constraint. -@fluentui/foundation-legacy: ../utilities/lib/styled.d.ts:17:48 -@fluentui/foundation-legacy: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/foundation-legacy: ~~~~~~~~~ -@fluentui/foundation-legacy: This type parameter probably needs an `extends object` constraint. -@fluentui/foundation-legacy: ../utilities/lib/styled.d.ts:19:60 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/foundation-legacy: 19 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/foundation-legacy: ~~~~~~~~~ -@fluentui/foundation-legacy: ../utilities/lib/styled.d.ts:17:48 -@fluentui/foundation-legacy: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/foundation-legacy: ~~~~~~~~~ -@fluentui/foundation-legacy: This type parameter probably needs an `extends object` constraint. -@fluentui/foundation-legacy: Found 9 errors in 5 files. -@fluentui/foundation-legacy: Errors Files -@fluentui/foundation-legacy: 1 src/createComponent.tsx:149 -@fluentui/foundation-legacy: 1 src/next/composed.tsx:357 -@fluentui/foundation-legacy: 1 src/slots.tsx:66 -@fluentui/foundation-legacy: 4 ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/foundation-legacy: 2 ../utilities/lib/styled.d.ts:17 -@fluentui/foundation-legacy: [XX:XX:XX XM] x ------------------------------------ -@fluentui/foundation-legacy: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/foundation-legacy: [XX:XX:XX XM] x Other tasks that did not complete: [ts:esm] -@fluentui/foundation-legacy: error Command failed with exit code 1. -@fluentui/react-file-type-icons: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react-file-type-icons: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-file-type-icons: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-file-type-icons/tsconfig.json" -@fluentui/react-file-type-icons: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-file-type-icons: at ChildProcess.emit (events.js:314:20) -@fluentui/react-file-type-icons: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-file-type-icons: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-file-type-icons: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-file-type-icons: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-file-type-icons: [XX:XX:XX XM] x stdout: -@fluentui/react-file-type-icons: [XX:XX:XX XM] x ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-file-type-icons: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-file-type-icons: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-file-type-icons: ~~~~~~~~~ -@fluentui/react-file-type-icons: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-file-type-icons: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-file-type-icons: ~~~~~~~~~ -@fluentui/react-file-type-icons: This type parameter probably needs an `extends object` constraint. -@fluentui/react-file-type-icons: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-file-type-icons: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-file-type-icons: ~~~~~~~~~ -@fluentui/react-file-type-icons: This type parameter probably needs an `extends object` constraint. -@fluentui/react-file-type-icons: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-file-type-icons: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-file-type-icons: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-file-type-icons: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-file-type-icons: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-file-type-icons: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-file-type-icons: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-file-type-icons: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-file-type-icons: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-file-type-icons: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-file-type-icons: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-file-type-icons: ~~~~~~~~~ -@fluentui/react-file-type-icons: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-file-type-icons: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-file-type-icons: ~~~~~~~~~ -@fluentui/react-file-type-icons: This type parameter probably needs an `extends object` constraint. -@fluentui/react-file-type-icons: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-file-type-icons: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-file-type-icons: ~~~~~~~~~ -@fluentui/react-file-type-icons: This type parameter probably needs an `extends object` constraint. -@fluentui/react-file-type-icons: ../utilities/lib/styled.d.ts:17:97 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-file-type-icons: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-file-type-icons: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-file-type-icons: ~~~~~~~~~ -@fluentui/react-file-type-icons: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-file-type-icons: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-file-type-icons: ~~~~~~~~~ -@fluentui/react-file-type-icons: This type parameter probably needs an `extends object` constraint. -@fluentui/react-file-type-icons: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-file-type-icons: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-file-type-icons: ~~~~~~~~~ -@fluentui/react-file-type-icons: This type parameter probably needs an `extends object` constraint. -@fluentui/react-file-type-icons: ../utilities/lib/styled.d.ts:19:60 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-file-type-icons: 19 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/react-file-type-icons: ~~~~~~~~~ -@fluentui/react-file-type-icons: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-file-type-icons: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-file-type-icons: ~~~~~~~~~ -@fluentui/react-file-type-icons: This type parameter probably needs an `extends object` constraint. -@fluentui/react-file-type-icons: Found 6 errors in 2 files. -@fluentui/react-file-type-icons: Errors Files -@fluentui/react-file-type-icons: 4 ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/react-file-type-icons: 2 ../utilities/lib/styled.d.ts:17 -@fluentui/react-file-type-icons: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-file-type-icons: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-file-type-icons: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react-file-type-icons: error Command failed with exit code 1. -@fluentui/react-focus: [XX:XX:XX XM] x Error detected while running '_wrapFunction' -@fluentui/react-focus: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-focus: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-focus/tsconfig.json" -@fluentui/react-focus: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-focus: at ChildProcess.emit (events.js:314:20) -@fluentui/react-focus: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-focus: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-focus: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-focus: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-focus: [XX:XX:XX XM] x stdout: -@fluentui/react-focus: [XX:XX:XX XM] x ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-focus: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-focus: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-focus: ~~~~~~~~~ -@fluentui/react-focus: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-focus: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-focus: ~~~~~~~~~ -@fluentui/react-focus: This type parameter probably needs an `extends object` constraint. -@fluentui/react-focus: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-focus: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-focus: ~~~~~~~~~ -@fluentui/react-focus: This type parameter probably needs an `extends object` constraint. -@fluentui/react-focus: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-focus: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-focus: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-focus: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-focus: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-focus: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-focus: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-focus: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-focus: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-focus: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-focus: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-focus: ~~~~~~~~~ -@fluentui/react-focus: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-focus: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-focus: ~~~~~~~~~ -@fluentui/react-focus: This type parameter probably needs an `extends object` constraint. -@fluentui/react-focus: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-focus: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-focus: ~~~~~~~~~ -@fluentui/react-focus: This type parameter probably needs an `extends object` constraint. -@fluentui/react-focus: ../utilities/lib/styled.d.ts:17:97 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-focus: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-focus: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-focus: ~~~~~~~~~ -@fluentui/react-focus: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-focus: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-focus: ~~~~~~~~~ -@fluentui/react-focus: This type parameter probably needs an `extends object` constraint. -@fluentui/react-focus: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-focus: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-focus: ~~~~~~~~~ -@fluentui/react-focus: This type parameter probably needs an `extends object` constraint. -@fluentui/react-focus: ../utilities/lib/styled.d.ts:19:60 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-focus: 19 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/react-focus: ~~~~~~~~~ -@fluentui/react-focus: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-focus: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-focus: ~~~~~~~~~ -@fluentui/react-focus: This type parameter probably needs an `extends object` constraint. -@fluentui/react-focus: Found 6 errors in 2 files. -@fluentui/react-focus: Errors Files -@fluentui/react-focus: 4 ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/react-focus: 2 ../utilities/lib/styled.d.ts:17 -@fluentui/react-focus: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-focus: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-focus: [XX:XX:XX XM] x Other tasks that did not complete: [ts:esm] -@fluentui/react-focus: error Command failed with exit code 1. -@fluentui/react-icon-provider: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react-icon-provider: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-icon-provider: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-icon-provider/tsconfig.json" -@fluentui/react-icon-provider: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-icon-provider: at ChildProcess.emit (events.js:314:20) -@fluentui/react-icon-provider: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-icon-provider: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-icon-provider: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-icon-provider: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-icon-provider: [XX:XX:XX XM] x stdout: -@fluentui/react-icon-provider: [XX:XX:XX XM] x ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-icon-provider: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-icon-provider: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icon-provider: ~~~~~~~~~ -@fluentui/react-icon-provider: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-icon-provider: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icon-provider: ~~~~~~~~~ -@fluentui/react-icon-provider: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icon-provider: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-icon-provider: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icon-provider: ~~~~~~~~~ -@fluentui/react-icon-provider: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icon-provider: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-icon-provider: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-icon-provider: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icon-provider: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-icon-provider: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-icon-provider: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-icon-provider: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icon-provider: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-icon-provider: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-icon-provider: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-icon-provider: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icon-provider: ~~~~~~~~~ -@fluentui/react-icon-provider: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-icon-provider: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icon-provider: ~~~~~~~~~ -@fluentui/react-icon-provider: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icon-provider: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-icon-provider: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icon-provider: ~~~~~~~~~ -@fluentui/react-icon-provider: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icon-provider: ../utilities/lib/styled.d.ts:17:97 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-icon-provider: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-icon-provider: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-icon-provider: ~~~~~~~~~ -@fluentui/react-icon-provider: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-icon-provider: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-icon-provider: ~~~~~~~~~ -@fluentui/react-icon-provider: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icon-provider: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-icon-provider: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-icon-provider: ~~~~~~~~~ -@fluentui/react-icon-provider: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icon-provider: ../utilities/lib/styled.d.ts:19:60 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-icon-provider: 19 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/react-icon-provider: ~~~~~~~~~ -@fluentui/react-icon-provider: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-icon-provider: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-icon-provider: ~~~~~~~~~ -@fluentui/react-icon-provider: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icon-provider: Found 6 errors in 2 files. -@fluentui/react-icon-provider: Errors Files -@fluentui/react-icon-provider: 4 ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/react-icon-provider: 2 ../utilities/lib/styled.d.ts:17 -@fluentui/react-icon-provider: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-icon-provider: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-icon-provider: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react-icon-provider: error Command failed with exit code 1. -@fluentui/circulars-test: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/circulars-test: [XX:XX:XX XM] x Command not defined: ts -@fluentui/circulars-test: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/circulars-test: error Command failed with exit code 1. -@fluentui/code-sandbox: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/code-sandbox: [XX:XX:XX XM] x Command not defined: ts -@fluentui/code-sandbox: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/code-sandbox: error Command failed with exit code 1. -@fluentui/local-sandbox: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/local-sandbox: [XX:XX:XX XM] x Command not defined: ts -@fluentui/local-sandbox: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/local-sandbox: error Command failed with exit code 1. -@fluentui/projects-test: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/projects-test: [XX:XX:XX XM] x Command not defined: ts -@fluentui/projects-test: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/projects-test: error Command failed with exit code 1. -@fluentui/ts-minbar-test-react-components: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/ts-minbar-test-react-components: [XX:XX:XX XM] x ------------------------------------ -@fluentui/ts-minbar-test-react-components: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/ts-minbar-test-react-components/tsconfig.json" -@fluentui/ts-minbar-test-react-components: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/ts-minbar-test-react-components: at ChildProcess.emit (events.js:314:20) -@fluentui/ts-minbar-test-react-components: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/ts-minbar-test-react-components: at maybeClose (internal/child_process.js:1022:16) -@fluentui/ts-minbar-test-react-components: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/ts-minbar-test-react-components: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/ts-minbar-test-react-components: [XX:XX:XX XM] x stdout: -@fluentui/ts-minbar-test-react-components: [XX:XX:XX XM] x src/index.ts:53:19 - error TS2571: Object is of type 'unknown'. -@fluentui/ts-minbar-test-react-components: 53 console.error(e?.stack || e); -@fluentui/ts-minbar-test-react-components: ~ -@fluentui/ts-minbar-test-react-components: Found 1 error in src/index.ts:53 -@fluentui/ts-minbar-test-react-components: [XX:XX:XX XM] x ------------------------------------ -@fluentui/ts-minbar-test-react-components: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/ts-minbar-test-react-components: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/ts-minbar-test-react-components: error Command failed with exit code 1. -@fluentui/react: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react/tsconfig.json" -@fluentui/react: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react: at ChildProcess.emit (events.js:314:20) -@fluentui/react: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react: [XX:XX:XX XM] x stdout: -@fluentui/react: [XX:XX:XX XM] x src/common/shallowUntilTarget.ts:49:5 - error TS2322: Type 'ShallowWrapper>' is not assignable to type 'ShallowWrapper<{}, {}, Component<{}, {}, any>>'. -@fluentui/react: The types returned by 'state()' are incompatible between these types. -@fluentui/react: Type 'S' is not assignable to type '{}'. -@fluentui/react: 49 return root; -@fluentui/react: ~~~~~~~~~~~~ -@fluentui/react: src/common/shallowUntilTarget.ts:32:39 -@fluentui/react: 32 export function shallowUntilTarget( -@fluentui/react: ~ -@fluentui/react: This type parameter probably needs an `extends object` constraint. -@fluentui/react: src/common/shallowUntilTarget.ts:57:7 - error TS2322: Type 'ShallowWrapper>' is not assignable to type 'ShallowWrapper<{}, {}, Component<{}, {}, any>>'. -@fluentui/react: 57 return root.first().shallow(shallowOptions); -@fluentui/react: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/DetailsList/DetailsList.base.tsx:721:15 - error TS2783: 'selection' is specified more than once, so this usage will be overwritten. -@fluentui/react: 721 selection={selection} -@fluentui/react: ~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/DetailsList/DetailsList.base.tsx:727:15 -@fluentui/react: 727 {...(selectionZoneProps || {})} -@fluentui/react: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react: This spread always overwrites this property. -@fluentui/react: src/components/FloatingPicker/BaseFloatingPicker.tsx:176:11 - error TS2322: Type '(ev: React.MouseEvent, item: T, index: number) => void' is not assignable to type '(ev?: MouseEvent | undefined, item?: IPersonaProps | undefined, index?: number | undefined) => void'. -@fluentui/react: Types of parameters 'item' and 'item' are incompatible. -@fluentui/react: Type 'IPersonaProps | undefined' is not assignable to type 'T'. -@fluentui/react: 'T' could be instantiated with an arbitrary type which could be unrelated to 'IPersonaProps | undefined'. -@fluentui/react: 176 onSuggestionRemove={this.onSuggestionRemove} -@fluentui/react: ~~~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/FloatingPicker/Suggestions/Suggestions.types.ts:27:3 -@fluentui/react: 27 onSuggestionRemove?: (ev?: React.MouseEvent, item?: IPersonaProps, index?: number) => void; -@fluentui/react: ~~~~~~~~~~~~~~~~~~ -@fluentui/react: The expected type comes from property 'onSuggestionRemove' which is declared here on type 'IntrinsicAttributes & IntrinsicClassAttributes> & Readonly> & Readonly<...>' -@fluentui/react: src/components/FloatingPicker/BaseFloatingPicker.tsx:284:11 - error TS2774: This condition will always return true since this function is always defined. Did you mean to call it instead? -@fluentui/react: 284 this.suggestionsControl.current.hasSuggestionSelected && -@fluentui/react: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.tsx:13:72 - error TS2339: Property 'peoplePickerPersonaContent' does not exist on type 'typeof import("*.scss")'. -@fluentui/react: 13

-@fluentui/react: ~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.tsx:17:64 - error TS2339: Property 'peoplePickerPersona' does not exist on type 'typeof import("*.scss")'. -@fluentui/react: 17 className={css('ms-PeoplePicker-Persona', stylesImport.peoplePickerPersona)} -@fluentui/react: ~~~~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/FloatingPicker/Suggestions/SuggestionsCore.tsx:184:30 - error TS2345: Argument of type 'T' is not assignable to parameter of type 'IPersonaProps | undefined'. -@fluentui/react: Type 'T' is not assignable to type 'IPersonaProps'. -@fluentui/react: 184 onSuggestionRemove(ev, item, index); -@fluentui/react: ~~~~ -@fluentui/react: src/components/FloatingPicker/Suggestions/SuggestionsCore.tsx:13:30 -@fluentui/react: 13 export class SuggestionsCore extends React.Component, {}> { -@fluentui/react: ~ -@fluentui/react: This type parameter probably needs an `extends object` constraint. -@fluentui/react: src/components/FloatingPicker/Suggestions/SuggestionsCore.tsx:13:30 -@fluentui/react: 13 export class SuggestionsCore extends React.Component, {}> { -@fluentui/react: ~ -@fluentui/react: This type parameter probably needs an `extends object` constraint. -@fluentui/react: src/components/FloatingPicker/Suggestions/SuggestionsStore.ts:56:16 - error TS2352: Conversion of type 'T' to type 'IPersonaProps' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first. -@fluentui/react: 56 (suggestion).text || -@fluentui/react: ~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/FloatingPicker/Suggestions/SuggestionsStore.ts:8:31 -@fluentui/react: 8 export class SuggestionsStore { -@fluentui/react: ~ -@fluentui/react: This type parameter probably needs an `extends object` constraint. -@fluentui/react: src/components/FloatingPicker/Suggestions/SuggestionsStore.ts:58:16 - error TS2352: Conversion of type 'T' to type 'IPersonaProps' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first. -@fluentui/react: 58 (suggestion).primaryText, -@fluentui/react: ~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/FloatingPicker/Suggestions/SuggestionsStore.ts:8:31 -@fluentui/react: 8 export class SuggestionsStore { -@fluentui/react: ~ -@fluentui/react: This type parameter probably needs an `extends object` constraint. -@fluentui/react: src/components/Image/Image.styles.ts:52:79 - error TS2551: Property 'msMaxTouchPoints' does not exist on type 'Navigator'. Did you mean 'maxTouchPoints'? -@fluentui/react: 52 const supportsObjectFit: boolean = window !== undefined && window.navigator.msMaxTouchPoints === undefined; -@fluentui/react: ~~~~~~~~~~~~~~~~ -@fluentui/react: ../../node_modules/typescript/lib/lib.dom.d.ts:9935:14 -@fluentui/react: 9935 readonly maxTouchPoints: number; -@fluentui/react: ~~~~~~~~~~~~~~ -@fluentui/react: 'maxTouchPoints' is declared here. -@fluentui/react: src/components/SelectedItemsList/BaseSelectedItemsList.tsx:32:28 - error TS2345: Argument of type 'this' is not assignable to parameter of type 'Component, any>'. -@fluentui/react: Type 'BaseSelectedItemsList' is not assignable to type 'Component, any>'. -@fluentui/react: Types of property 'componentDidUpdate' are incompatible. -@fluentui/react: Type '(oldProps: P, oldState: IBaseSelectedItemsListState) => void' is not assignable to type '(prevProps: Readonly

, prevState: Readonly>, snapshot?: any) => void'. -@fluentui/react: 32 initializeComponentRef(this); -@fluentui/react: ~~~~ -@fluentui/react: src/components/SelectedItemsList/BaseSelectedItemsList.tsx:136:34 - error TS2352: Conversion of type 'IObjectWithKey[]' to type 'T[]' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first. -@fluentui/react: 136 const selectedItems: T[] = this.selection.getSelection() as T[]; -@fluentui/react: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/SelectedItemsList/BaseSelectedItemsList.tsx:145:10 - error TS2416: Property 'componentDidUpdate' in type 'BaseSelectedItemsList' is not assignable to the same property in base type 'Component, any>'. -@fluentui/react: Type '(oldProps: P, oldState: IBaseSelectedItemsListState) => void' is not assignable to type '(prevProps: Readonly

, prevState: Readonly>, snapshot?: any) => void'. -@fluentui/react: Types of parameters 'oldState' and 'prevState' are incompatible. -@fluentui/react: Type 'Readonly>' is not assignable to type 'IBaseSelectedItemsListState'. -@fluentui/react: Types of property 'items' are incompatible. -@fluentui/react: Type 'T[]' is not assignable to type 'IObjectWithKey[]'. -@fluentui/react: Type 'T' is not assignable to type 'IObjectWithKey'. -@fluentui/react: 145 public componentDidUpdate(oldProps: P, oldState: IBaseSelectedItemsListState): void { -@fluentui/react: ~~~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/SelectedItemsList/BaseSelectedItemsList.tsx:15:36 -@fluentui/react: 15 export class BaseSelectedItemsList> -@fluentui/react: ~ -@fluentui/react: This type parameter probably needs an `extends object` constraint. -@fluentui/react: src/components/SelectedItemsList/BaseSelectedItemsList.tsx:146:29 - error TS2367: This condition will always return 'true' since the types 'T[]' and 'IObjectWithKey[]' have no overlap. -@fluentui/react: 146 if (this.state.items && this.state.items !== oldState.items) { -@fluentui/react: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/SelectedItemsList/BaseSelectedItemsList.tsx:147:31 - error TS2345: Argument of type 'T[]' is not assignable to parameter of type 'IObjectWithKey[]'. -@fluentui/react: 147 this.selection.setItems(this.state.items); -@fluentui/react: ~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/SelectedItemsList/BaseSelectedItemsList.tsx:156:12 - error TS2352: Conversion of type 'IObjectWithKey[]' to type 'T[]' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first. -@fluentui/react: Type 'IObjectWithKey' is not comparable to type 'T'. -@fluentui/react: 'T' could be instantiated with an arbitrary type which could be unrelated to 'IObjectWithKey'. -@fluentui/react: 156 return this.selection.getSelection() as T[]; -@fluentui/react: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/SelectedItemsList/BaseSelectedItemsList.tsx:160:29 - error TS2345: Argument of type 'T[]' is not assignable to parameter of type 'IObjectWithKey[]'. -@fluentui/react: 160 this.selection.setItems(this.state.items); -@fluentui/react: ~~~~~~~~~~~~~~~~ -@fluentui/react: src/components/pickers/BasePicker.tsx:135:29 - error TS2345: Argument of type 'T[]' is not assignable to parameter of type 'IObjectWithKey[]'. -@fluentui/react: Type 'T' is not assignable to type 'IObjectWithKey'. -@fluentui/react: 135 this.selection.setItems(items); -@fluentui/react: ~~~~~ -@fluentui/react: src/components/pickers/BasePicker.tsx:91:25 -@fluentui/react: 91 export class BasePicker> -@fluentui/react: ~ -@fluentui/react: This type parameter probably needs an `extends object` constraint. -@fluentui/react: Found 19 errors in 9 files. -@fluentui/react: Errors Files -@fluentui/react: 2 src/common/shallowUntilTarget.ts:49 -@fluentui/react: 1 src/components/DetailsList/DetailsList.base.tsx:721 -@fluentui/react: 2 src/components/FloatingPicker/BaseFloatingPicker.tsx:176 -@fluentui/react: 2 src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.tsx:13 -@fluentui/react: 1 src/components/FloatingPicker/Suggestions/SuggestionsCore.tsx:184 -@fluentui/react: 2 src/components/FloatingPicker/Suggestions/SuggestionsStore.ts:56 -@fluentui/react: 1 src/components/Image/Image.styles.ts:52 -@fluentui/react: 7 src/components/SelectedItemsList/BaseSelectedItemsList.tsx:32 -@fluentui/react: 1 src/components/pickers/BasePicker.tsx:135 -@fluentui/react: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react: error Command failed with exit code 1. -@fluentui/react-icons-mdl2: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react-icons-mdl2: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-icons-mdl2: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-icons-mdl2/tsconfig.json" -@fluentui/react-icons-mdl2: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-icons-mdl2: at ChildProcess.emit (events.js:314:20) -@fluentui/react-icons-mdl2: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-icons-mdl2: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-icons-mdl2: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-icons-mdl2: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-icons-mdl2: [XX:XX:XX XM] x stdout: -@fluentui/react-icons-mdl2: [XX:XX:XX XM] x ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-icons-mdl2: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-icons-mdl2: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icons-mdl2: ~~~~~~~~~ -@fluentui/react-icons-mdl2: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-icons-mdl2: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icons-mdl2: ~~~~~~~~~ -@fluentui/react-icons-mdl2: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icons-mdl2: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-icons-mdl2: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icons-mdl2: ~~~~~~~~~ -@fluentui/react-icons-mdl2: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icons-mdl2: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-icons-mdl2: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-icons-mdl2: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icons-mdl2: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-icons-mdl2: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-icons-mdl2: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-icons-mdl2: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icons-mdl2: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-icons-mdl2: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-icons-mdl2: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-icons-mdl2: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icons-mdl2: ~~~~~~~~~ -@fluentui/react-icons-mdl2: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-icons-mdl2: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icons-mdl2: ~~~~~~~~~ -@fluentui/react-icons-mdl2: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icons-mdl2: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-icons-mdl2: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-icons-mdl2: ~~~~~~~~~ -@fluentui/react-icons-mdl2: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icons-mdl2: src/utils/createSvgIcon.ts:3:26 - error TS2307: Cannot find module './SvgIcon.scss' or its corresponding type declarations. -@fluentui/react-icons-mdl2: 3 import * as classes from './SvgIcon.scss'; -@fluentui/react-icons-mdl2: ~~~~~~~~~~~~~~~~ -@fluentui/react-icons-mdl2: ../utilities/lib/styled.d.ts:17:97 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-icons-mdl2: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-icons-mdl2: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-icons-mdl2: ~~~~~~~~~ -@fluentui/react-icons-mdl2: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-icons-mdl2: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-icons-mdl2: ~~~~~~~~~ -@fluentui/react-icons-mdl2: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icons-mdl2: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-icons-mdl2: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-icons-mdl2: ~~~~~~~~~ -@fluentui/react-icons-mdl2: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icons-mdl2: ../utilities/lib/styled.d.ts:19:60 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-icons-mdl2: 19 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/react-icons-mdl2: ~~~~~~~~~ -@fluentui/react-icons-mdl2: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-icons-mdl2: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-icons-mdl2: ~~~~~~~~~ -@fluentui/react-icons-mdl2: This type parameter probably needs an `extends object` constraint. -@fluentui/react-icons-mdl2: Found 7 errors in 3 files. -@fluentui/react-icons-mdl2: Errors Files -@fluentui/react-icons-mdl2: 4 ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/react-icons-mdl2: 1 src/utils/createSvgIcon.ts:3 -@fluentui/react-icons-mdl2: 2 ../utilities/lib/styled.d.ts:17 -@fluentui/react-icons-mdl2: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-icons-mdl2: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-icons-mdl2: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react-icons-mdl2: error Command failed with exit code 1. -@fluentui/react-builder: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-builder: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-builder: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-builder: error Command failed with exit code 1. -@fluentui/react-northstar-prototypes: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/react-northstar-prototypes: [XX:XX:XX XM] x Command not defined: ts -@fluentui/react-northstar-prototypes: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-northstar-prototypes: error Command failed with exit code 1. -@fluentui/ts-minbar-test-react: [XX:XX:XX XM] x Error detected while running '_wrapFunction' -@fluentui/ts-minbar-test-react: [XX:XX:XX XM] x ------------------------------------ -@fluentui/ts-minbar-test-react: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/apps/ts-minbar-test-react/tsconfig.json" -@fluentui/ts-minbar-test-react: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/ts-minbar-test-react: at ChildProcess.emit (events.js:314:20) -@fluentui/ts-minbar-test-react: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/ts-minbar-test-react: at maybeClose (internal/child_process.js:1022:16) -@fluentui/ts-minbar-test-react: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/ts-minbar-test-react: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/ts-minbar-test-react: [XX:XX:XX XM] x stdout: -@fluentui/ts-minbar-test-react: [XX:XX:XX XM] x src/index.ts:54:19 - error TS2571: Object is of type 'unknown'. -@fluentui/ts-minbar-test-react: 54 console.error(e?.stack || e); -@fluentui/ts-minbar-test-react: ~ -@fluentui/ts-minbar-test-react: Found 1 error in src/index.ts:54 -@fluentui/ts-minbar-test-react: [XX:XX:XX XM] x ------------------------------------ -@fluentui/ts-minbar-test-react: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/ts-minbar-test-react: [XX:XX:XX XM] x Other tasks that did not complete: [ts:esm] -@fluentui/ts-minbar-test-react: error Command failed with exit code 1. -@fluentui/cra-template: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/cra-template: [XX:XX:XX XM] x Command not defined: ts -@fluentui/cra-template: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/cra-template: error Command failed with exit code 1. -@fluentui/react-cards: [XX:XX:XX XM] x Error detected while running '_wrapFunction' -@fluentui/react-cards: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-cards: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/react-cards/tsconfig.json" -@fluentui/react-cards: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-cards: at ChildProcess.emit (events.js:314:20) -@fluentui/react-cards: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-cards: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-cards: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-cards: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-cards: [XX:XX:XX XM] x stdout: -@fluentui/react-cards: [XX:XX:XX XM] x ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-cards: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-cards: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-cards: ~~~~~~~~~ -@fluentui/react-cards: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-cards: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-cards: ~~~~~~~~~ -@fluentui/react-cards: This type parameter probably needs an `extends object` constraint. -@fluentui/react-cards: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-cards: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-cards: ~~~~~~~~~ -@fluentui/react-cards: This type parameter probably needs an `extends object` constraint. -@fluentui/react-cards: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-cards: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-cards: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-cards: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-cards: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-cards: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-cards: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-cards: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-cards: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-cards: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-cards: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-cards: ~~~~~~~~~ -@fluentui/react-cards: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-cards: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-cards: ~~~~~~~~~ -@fluentui/react-cards: This type parameter probably needs an `extends object` constraint. -@fluentui/react-cards: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-cards: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-cards: ~~~~~~~~~ -@fluentui/react-cards: This type parameter probably needs an `extends object` constraint. -@fluentui/react-cards: ../utilities/lib/styled.d.ts:17:97 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-cards: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-cards: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-cards: ~~~~~~~~~ -@fluentui/react-cards: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-cards: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-cards: ~~~~~~~~~ -@fluentui/react-cards: This type parameter probably needs an `extends object` constraint. -@fluentui/react-cards: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-cards: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-cards: ~~~~~~~~~ -@fluentui/react-cards: This type parameter probably needs an `extends object` constraint. -@fluentui/react-cards: ../utilities/lib/styled.d.ts:19:60 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-cards: 19 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/react-cards: ~~~~~~~~~ -@fluentui/react-cards: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-cards: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-cards: ~~~~~~~~~ -@fluentui/react-cards: This type parameter probably needs an `extends object` constraint. -@fluentui/react-cards: Found 6 errors in 2 files. -@fluentui/react-cards: Errors Files -@fluentui/react-cards: 4 ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/react-cards: 2 ../utilities/lib/styled.d.ts:17 -@fluentui/react-cards: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-cards: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-cards: [XX:XX:XX XM] x Other tasks that did not complete: [ts:esm] -@fluentui/react-cards: error Command failed with exit code 1. -@fluentui/react-date-time: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react-date-time: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-date-time: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-date-time/tsconfig.json" -@fluentui/react-date-time: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-date-time: at ChildProcess.emit (events.js:314:20) -@fluentui/react-date-time: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-date-time: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-date-time: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-date-time: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-date-time: [XX:XX:XX XM] x stdout: -@fluentui/react-date-time: [XX:XX:XX XM] x ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-date-time: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-date-time: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-date-time: ~~~~~~~~~ -@fluentui/react-date-time: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-date-time: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-date-time: ~~~~~~~~~ -@fluentui/react-date-time: This type parameter probably needs an `extends object` constraint. -@fluentui/react-date-time: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-date-time: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-date-time: ~~~~~~~~~ -@fluentui/react-date-time: This type parameter probably needs an `extends object` constraint. -@fluentui/react-date-time: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-date-time: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-date-time: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-date-time: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-date-time: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-date-time: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-date-time: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-date-time: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-date-time: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-date-time: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-date-time: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-date-time: ~~~~~~~~~ -@fluentui/react-date-time: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-date-time: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-date-time: ~~~~~~~~~ -@fluentui/react-date-time: This type parameter probably needs an `extends object` constraint. -@fluentui/react-date-time: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-date-time: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-date-time: ~~~~~~~~~ -@fluentui/react-date-time: This type parameter probably needs an `extends object` constraint. -@fluentui/react-date-time: ../utilities/lib/styled.d.ts:17:97 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-date-time: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-date-time: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-date-time: ~~~~~~~~~ -@fluentui/react-date-time: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-date-time: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-date-time: ~~~~~~~~~ -@fluentui/react-date-time: This type parameter probably needs an `extends object` constraint. -@fluentui/react-date-time: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-date-time: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-date-time: ~~~~~~~~~ -@fluentui/react-date-time: This type parameter probably needs an `extends object` constraint. -@fluentui/react-date-time: ../utilities/lib/styled.d.ts:19:60 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-date-time: 19 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/react-date-time: ~~~~~~~~~ -@fluentui/react-date-time: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-date-time: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-date-time: ~~~~~~~~~ -@fluentui/react-date-time: This type parameter probably needs an `extends object` constraint. -@fluentui/react-date-time: Found 6 errors in 2 files. -@fluentui/react-date-time: Errors Files -@fluentui/react-date-time: 4 ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/react-date-time: 2 ../utilities/lib/styled.d.ts:17 -@fluentui/react-date-time: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-date-time: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-date-time: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react-date-time: error Command failed with exit code 1. -@fluentui/react-experiments: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react-experiments: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-experiments: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-experiments/tsconfig.json" -@fluentui/react-experiments: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-experiments: at ChildProcess.emit (events.js:314:20) -@fluentui/react-experiments: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-experiments: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-experiments: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-experiments: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-experiments: [XX:XX:XX XM] x stdout: -@fluentui/react-experiments: [XX:XX:XX XM] x src/components/FloatingSuggestions/FloatingPeopleSuggestions/defaults/DefaultPeopleSuggestionsItem.tsx:13:72 - error TS2339: Property 'peoplePickerPersonaContent' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 13

-@fluentui/react-experiments: ~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/FloatingSuggestions/FloatingPeopleSuggestions/defaults/DefaultPeopleSuggestionsItem.tsx:17:64 - error TS2339: Property 'peoplePickerPersona' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 17 className={css('ms-PeoplePicker-Persona', stylesImport.peoplePickerPersona)} -@fluentui/react-experiments: ~~~~~~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/FloatingSuggestions/FloatingSuggestions.tsx:202:27 - error TS2339: Property 'callout' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 202 className={styles.callout} -@fluentui/react-experiments: ~~~~~~~ -@fluentui/react-experiments: src/components/FloatingSuggestions/FloatingSuggestions.tsx:214:11 - error TS2322: Type '(ev: React.MouseEvent, item: TItem, index: number) => void' is not assignable to type '(ev: MouseEvent, item: IPersonaProps, index: number) => void'. -@fluentui/react-experiments: Types of parameters 'item' and 'item' are incompatible. -@fluentui/react-experiments: Type 'IPersonaProps' is not assignable to type 'TItem'. -@fluentui/react-experiments: 'TItem' could be instantiated with an arbitrary type which could be unrelated to 'IPersonaProps'. -@fluentui/react-experiments: 214 onSuggestionRemove={this._onSuggestionRemove} -@fluentui/react-experiments: ~~~~~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/FloatingSuggestions/Suggestions/Suggestions.types.ts:27:3 -@fluentui/react-experiments: 27 onSuggestionRemove?: (ev: React.MouseEvent, item: IPersonaProps, index: number) => void; -@fluentui/react-experiments: ~~~~~~~~~~~~~~~~~~ -@fluentui/react-experiments: The expected type comes from property 'onSuggestionRemove' which is declared here on type 'IntrinsicAttributes & IFloatingSuggestionsInnerSuggestionProps & { children?: ReactNode; }' -@fluentui/react-experiments: src/components/FloatingSuggestions/FloatingSuggestions.tsx:281:11 - error TS2774: This condition will always return true since this function is always defined. Did you mean to call it instead? -@fluentui/react-experiments: 281 this.suggestionsControl.current.hasSuggestionSelected && -@fluentui/react-experiments: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/FloatingSuggestions/Suggestions/SuggestionsCore.tsx:194:30 - error TS2345: Argument of type 'T' is not assignable to parameter of type 'IPersonaProps'. -@fluentui/react-experiments: 194 onSuggestionRemove(ev, item, index); -@fluentui/react-experiments: ~~~~ -@fluentui/react-experiments: src/components/FloatingSuggestions/Suggestions/SuggestionsCore.tsx:25:30 -@fluentui/react-experiments: 25 export class SuggestionsCore extends React.Component, {}> { -@fluentui/react-experiments: ~ -@fluentui/react-experiments: This type parameter probably needs an `extends object` constraint. -@fluentui/react-experiments: src/components/SelectedItemsList/Items/subcomponents/DefaultEditingItem.tsx:257:100 - error TS2339: Property 'editingContainer' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 257 -@fluentui/react-experiments: ~~~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/SelectedItemsList/Items/subcomponents/DefaultEditingItem.tsx:267:27 - error TS2339: Property 'editingInput' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 267 className={styles.editingInput} -@fluentui/react-experiments: ~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/StaticList/StaticList.tsx:13:37 - error TS2339: Property 'root' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 13 { className: css(stylesImport.root, className) }, -@fluentui/react-experiments: ~~~~ -@fluentui/react-experiments: src/components/Tile/Tile.tsx:210:97 - error TS2339: Property 'label' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 210 -@fluentui/react-experiments: ~~~~~ -@fluentui/react-experiments: src/components/signals/Signal.tsx:15:83 - error TS2339: Property 'signal' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 15 -@fluentui/react-experiments: ~~~~~~ -@fluentui/react-experiments: src/components/signals/SignalField.tsx:24:27 - error TS2339: Property 'signalField' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 24 SignalFieldStyles.signalField, -@fluentui/react-experiments: ~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/SignalField.tsx:26:30 - error TS2339: Property 'wide' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 26 [SignalFieldStyles.wide]: signalsFieldMode === 'wide', -@fluentui/react-experiments: ~~~~ -@fluentui/react-experiments: src/components/signals/SignalField.tsx:27:30 - error TS2339: Property 'compact' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 27 [SignalFieldStyles.compact]: signalsFieldMode === 'compact', -@fluentui/react-experiments: ~~~~~~~ -@fluentui/react-experiments: src/components/signals/SignalField.tsx:33:42 - error TS2339: Property 'signalFieldValue' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 33 {props.children} -@fluentui/react-experiments: ~~~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:15:60 - error TS2339: Property 'youCheckedOut' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 15 return ; -@fluentui/react-experiments: ~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:19:60 - error TS2339: Property 'blocked' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 19 return ; -@fluentui/react-experiments: ~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:26:34 - error TS2339: Property 'missingMetadata' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 26 signalClass={SignalsStyles.missingMetadata} -@fluentui/react-experiments: ~~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:33:60 - error TS2339: Property 'warning' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 33 return ; -@fluentui/react-experiments: ~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:37:60 - error TS2339: Property 'awaitingApproval' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 37 return ; -@fluentui/react-experiments: ~~~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:41:60 - error TS2339: Property 'trending' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 41 return ; -@fluentui/react-experiments: ~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:45:60 - error TS2339: Property 'someoneCheckedOut' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 45 return ; -@fluentui/react-experiments: ~~~~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:49:60 - error TS2339: Property 'record' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 49 return ; -@fluentui/react-experiments: ~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:53:60 - error TS2339: Property 'needsRepublishing' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 53 return ; -@fluentui/react-experiments: ~~~~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:57:60 - error TS2339: Property 'itemScheduled' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 57 return ; -@fluentui/react-experiments: ~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:67:54 - error TS2339: Property 'signal' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 67 -@fluentui/react-experiments: ~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:67:76 - error TS2339: Property 'newSignal' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 67 -@fluentui/react-experiments: ~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:68:70 - error TS2339: Property 'newIcon' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 68 -@fluentui/react-experiments: ~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:79:58 - error TS2339: Property 'liveEdit' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 79 return ; -@fluentui/react-experiments: ~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:83:60 - error TS2339: Property 'mention' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 83 return ; -@fluentui/react-experiments: ~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:93:42 - error TS2339: Property 'comments' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 93 -@fluentui/react-experiments: ~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:94:70 - error TS2339: Property 'commentsIcon' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 94 -@fluentui/react-experiments: ~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:95:54 - error TS2339: Property 'commentsCount' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 95 {children ? {children} : null} -@fluentui/react-experiments: ~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:104:60 - error TS2339: Property 'unseenReply' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 104 return ; -@fluentui/react-experiments: ~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:108:60 - error TS2339: Property 'unseenEdit' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 108 return ; -@fluentui/react-experiments: ~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:112:60 - error TS2339: Property 'readOnly' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 112 return ; -@fluentui/react-experiments: ~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:116:60 - error TS2339: Property 'emailed' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 116 return ; -@fluentui/react-experiments: ~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:120:60 - error TS2339: Property 'shared' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 120 return ; -@fluentui/react-experiments: ~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:124:60 - error TS2339: Property 'folder' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 124 return ; -@fluentui/react-experiments: ~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:128:60 - error TS2339: Property 'folder' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 128 return ; -@fluentui/react-experiments: ~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:132:60 - error TS2339: Property 'folder' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 132 return ; -@fluentui/react-experiments: ~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:136:60 - error TS2339: Property 'malwareDetected' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 136 return ; -@fluentui/react-experiments: ~~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:145:60 - error TS2339: Property 'external' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 145 return ; -@fluentui/react-experiments: ~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:149:60 - error TS2339: Property 'bookmarkOutline' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 149 return ; -@fluentui/react-experiments: ~~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:153:60 - error TS2339: Property 'bookmarkFilled' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 153 return ; -@fluentui/react-experiments: ~~~~~~~~~~~~~~ -@fluentui/react-experiments: src/components/signals/Signals.tsx:171:82 - error TS2339: Property 'signal' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 171 -@fluentui/react-experiments: ~~~~~~ -@fluentui/react-experiments: src/utilities/scrolling/ScrollContainer.tsx:76:68 - error TS2339: Property 'root' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-experiments: 76 className={css('ms-ScrollContainer', ScrollContainerStyles.root, className)} -@fluentui/react-experiments: ~~~~ -@fluentui/react-experiments: Found 47 errors in 10 files. -@fluentui/react-experiments: Errors Files -@fluentui/react-experiments: 2 src/components/FloatingSuggestions/FloatingPeopleSuggestions/defaults/DefaultPeopleSuggestionsItem.tsx:13 -@fluentui/react-experiments: 3 src/components/FloatingSuggestions/FloatingSuggestions.tsx:202 -@fluentui/react-experiments: 1 src/components/FloatingSuggestions/Suggestions/SuggestionsCore.tsx:194 -@fluentui/react-experiments: 2 src/components/SelectedItemsList/Items/subcomponents/DefaultEditingItem.tsx:257 -@fluentui/react-experiments: 1 src/components/StaticList/StaticList.tsx:13 -@fluentui/react-experiments: 1 src/components/Tile/Tile.tsx:210 -@fluentui/react-experiments: 1 src/components/signals/Signal.tsx:15 -@fluentui/react-experiments: 4 src/components/signals/SignalField.tsx:24 -@fluentui/react-experiments: 31 src/components/signals/Signals.tsx:15 -@fluentui/react-experiments: 1 src/utilities/scrolling/ScrollContainer.tsx:76 -@fluentui/react-experiments: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-experiments: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-experiments: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react-experiments: error Command failed with exit code 1. -@fluentui/react-monaco-editor: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react-monaco-editor: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-monaco-editor: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-monaco-editor/tsconfig.json" -@fluentui/react-monaco-editor: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-monaco-editor: at ChildProcess.emit (events.js:314:20) -@fluentui/react-monaco-editor: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-monaco-editor: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-monaco-editor: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-monaco-editor: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-monaco-editor: [XX:XX:XX XM] x stdout: -@fluentui/react-monaco-editor: [XX:XX:XX XM] x ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-monaco-editor: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-monaco-editor: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-monaco-editor: ~~~~~~~~~ -@fluentui/react-monaco-editor: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-monaco-editor: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-monaco-editor: ~~~~~~~~~ -@fluentui/react-monaco-editor: This type parameter probably needs an `extends object` constraint. -@fluentui/react-monaco-editor: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/react-monaco-editor: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-monaco-editor: ~~~~~~~~~ -@fluentui/react-monaco-editor: This type parameter probably needs an `extends object` constraint. -@fluentui/react-monaco-editor: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-monaco-editor: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-monaco-editor: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-monaco-editor: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-monaco-editor: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-monaco-editor: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-monaco-editor: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-monaco-editor: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-monaco-editor: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-monaco-editor: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-monaco-editor: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-monaco-editor: ~~~~~~~~~ -@fluentui/react-monaco-editor: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-monaco-editor: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-monaco-editor: ~~~~~~~~~ -@fluentui/react-monaco-editor: This type parameter probably needs an `extends object` constraint. -@fluentui/react-monaco-editor: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/react-monaco-editor: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/react-monaco-editor: ~~~~~~~~~ -@fluentui/react-monaco-editor: This type parameter probably needs an `extends object` constraint. -@fluentui/react-monaco-editor: src/components/Editor.tsx:1:25 - error TS2307: Cannot find module '@fluentui/monaco-editor' or its corresponding type declarations. -@fluentui/react-monaco-editor: 1 import * as monaco from '@fluentui/monaco-editor'; -@fluentui/react-monaco-editor: ~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-monaco-editor: src/components/TsxEditor.tsx:3:25 - error TS2307: Cannot find module '@fluentui/monaco-editor' or its corresponding type declarations. -@fluentui/react-monaco-editor: 3 import * as monaco from '@fluentui/monaco-editor'; -@fluentui/react-monaco-editor: ~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-monaco-editor: src/interfaces/monaco.ts:5:25 - error TS2307: Cannot find module '@fluentui/monaco-editor/esm/vs/editor/editor.api' or its corresponding type declarations. -@fluentui/react-monaco-editor: 5 import * as monaco from '@fluentui/monaco-editor/esm/vs/editor/editor.api'; -@fluentui/react-monaco-editor: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-monaco-editor: src/transpiler/transpile.ts:2:25 - error TS2307: Cannot find module '@fluentui/monaco-editor' or its corresponding type declarations. -@fluentui/react-monaco-editor: 2 import * as monaco from '@fluentui/monaco-editor'; -@fluentui/react-monaco-editor: ~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-monaco-editor: src/transpiler/transpile.ts:24:11 - error TS7006: Parameter 'getWorker' implicitly has an 'any' type. -@fluentui/react-monaco-editor: 24 .then(getWorker => getWorker(model.uri)) -@fluentui/react-monaco-editor: ~~~~~~~~~ -@fluentui/react-monaco-editor: src/transpiler/transpile.ts:25:11 - error TS7006: Parameter 'worker' implicitly has an 'any' type. -@fluentui/react-monaco-editor: 25 .then(worker => { -@fluentui/react-monaco-editor: ~~~~~~ -@fluentui/react-monaco-editor: src/transpiler/transpile.ts:26:50 - error TS7006: Parameter 'output' implicitly has an 'any' type. -@fluentui/react-monaco-editor: 26 return worker.getEmitOutput(filename).then(output => { -@fluentui/react-monaco-editor: ~~~~~~ -@fluentui/react-monaco-editor: src/transpiler/transpile.ts:30:62 - error TS7006: Parameter 'syntacticDiagnostics' implicitly has an 'any' type. -@fluentui/react-monaco-editor: 30 return worker.getSyntacticDiagnostics(filename).then(syntacticDiagnostics => { -@fluentui/react-monaco-editor: ~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-monaco-editor: src/transpiler/transpile.ts:31:62 - error TS7006: Parameter 'd' implicitly has an 'any' type. -@fluentui/react-monaco-editor: 31 syntacticDiagnostics = syntacticDiagnostics.filter(d => d.category === 1 /*error*/); -@fluentui/react-monaco-editor: ~ -@fluentui/react-monaco-editor: src/transpiler/transpile.ts:49:12 - error TS7006: Parameter 'ex' implicitly has an 'any' type. -@fluentui/react-monaco-editor: 49 .catch(ex => { -@fluentui/react-monaco-editor: ~~ -@fluentui/react-monaco-editor: ../react/lib/components/SelectedItemsList/BaseSelectedItemsList.d.ts:29:5 - error TS2416: Property 'componentDidUpdate' in type 'BaseSelectedItemsList' is not assignable to the same property in base type 'Component, any>'. -@fluentui/react-monaco-editor: Type '(oldProps: P, oldState: IBaseSelectedItemsListState) => void' is not assignable to type '(prevProps: Readonly

, prevState: Readonly>, snapshot?: any) => void'. -@fluentui/react-monaco-editor: Types of parameters 'oldState' and 'prevState' are incompatible. -@fluentui/react-monaco-editor: Type 'Readonly>' is not assignable to type 'IBaseSelectedItemsListState'. -@fluentui/react-monaco-editor: Types of property 'items' are incompatible. -@fluentui/react-monaco-editor: Type 'T[]' is not assignable to type 'IObjectWithKey[]'. -@fluentui/react-monaco-editor: Type 'T' is not assignable to type 'IObjectWithKey'. -@fluentui/react-monaco-editor: 29 componentDidUpdate(oldProps: P, oldState: IBaseSelectedItemsListState): void; -@fluentui/react-monaco-editor: ~~~~~~~~~~~~~~~~~~ -@fluentui/react-monaco-editor: ../react/lib/components/SelectedItemsList/BaseSelectedItemsList.d.ts:8:44 -@fluentui/react-monaco-editor: 8 export declare class BaseSelectedItemsList> extends React.Component> implements IBaseSelectedItemsList { -@fluentui/react-monaco-editor: ~ -@fluentui/react-monaco-editor: This type parameter probably needs an `extends object` constraint. -@fluentui/react-monaco-editor: ../utilities/lib/styled.d.ts:17:97 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-monaco-editor: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/react-monaco-editor: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-monaco-editor: ~~~~~~~~~ -@fluentui/react-monaco-editor: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-monaco-editor: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-monaco-editor: ~~~~~~~~~ -@fluentui/react-monaco-editor: This type parameter probably needs an `extends object` constraint. -@fluentui/react-monaco-editor: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-monaco-editor: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-monaco-editor: ~~~~~~~~~ -@fluentui/react-monaco-editor: This type parameter probably needs an `extends object` constraint. -@fluentui/react-monaco-editor: ../utilities/lib/styled.d.ts:19:60 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/react-monaco-editor: 19 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/react-monaco-editor: ~~~~~~~~~ -@fluentui/react-monaco-editor: ../utilities/lib/styled.d.ts:17:48 -@fluentui/react-monaco-editor: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/react-monaco-editor: ~~~~~~~~~ -@fluentui/react-monaco-editor: This type parameter probably needs an `extends object` constraint. -@fluentui/react-monaco-editor: Found 17 errors in 7 files. -@fluentui/react-monaco-editor: Errors Files -@fluentui/react-monaco-editor: 4 ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/react-monaco-editor: 1 src/components/Editor.tsx:1 -@fluentui/react-monaco-editor: 1 src/components/TsxEditor.tsx:3 -@fluentui/react-monaco-editor: 1 src/interfaces/monaco.ts:5 -@fluentui/react-monaco-editor: 7 src/transpiler/transpile.ts:2 -@fluentui/react-monaco-editor: 1 ../react/lib/components/SelectedItemsList/BaseSelectedItemsList.d.ts:29 -@fluentui/react-monaco-editor: 2 ../utilities/lib/styled.d.ts:17 -@fluentui/react-monaco-editor: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-monaco-editor: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-monaco-editor: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react-monaco-editor: error Command failed with exit code 1. -@fluentui/docs: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/docs: [XX:XX:XX XM] x Command not defined: ts -@fluentui/docs: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/docs: error Command failed with exit code 1. -@fluentui/e2e: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/e2e: [XX:XX:XX XM] x Command not defined: ts -@fluentui/e2e: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/e2e: error Command failed with exit code 1. -@fluentui/react-docsite-components: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react-docsite-components: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-docsite-components: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-docsite-components/tsconfig.json" -@fluentui/react-docsite-components: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-docsite-components: at ChildProcess.emit (events.js:314:20) -@fluentui/react-docsite-components: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-docsite-components: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-docsite-components: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-docsite-components: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-docsite-components: [XX:XX:XX XM] x stdout: -@fluentui/react-docsite-components: [XX:XX:XX XM] x src/components/Page/Page.tsx:21:25 - error TS2307: Cannot find module './Page.module.scss' or its corresponding type declarations. -@fluentui/react-docsite-components: 21 import * as styles from './Page.module.scss'; -@fluentui/react-docsite-components: ~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-docsite-components: src/components/Page/sections/BestPracticesSection.tsx:7:25 - error TS2307: Cannot find module '../Page.module.scss' or its corresponding type declarations. -@fluentui/react-docsite-components: 7 import * as styles from '../Page.module.scss'; -@fluentui/react-docsite-components: ~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-docsite-components: src/components/Page/sections/ExamplesSection.tsx:4:25 - error TS2307: Cannot find module '../Page.module.scss' or its corresponding type declarations. -@fluentui/react-docsite-components: 4 import * as styles from '../Page.module.scss'; -@fluentui/react-docsite-components: ~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-docsite-components: src/components/Page/sections/FeedbackSection.tsx:5:25 - error TS2307: Cannot find module '../Page.module.scss' or its corresponding type declarations. -@fluentui/react-docsite-components: 5 import * as styles from '../Page.module.scss'; -@fluentui/react-docsite-components: ~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-docsite-components: src/components/Page/sections/ImplementationSection.tsx:5:25 - error TS2307: Cannot find module '../Page.module.scss' or its corresponding type declarations. -@fluentui/react-docsite-components: 5 import * as styles from '../Page.module.scss'; -@fluentui/react-docsite-components: ~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-docsite-components: src/components/Page/sections/MarkdownSection.tsx:7:25 - error TS2307: Cannot find module '../Page.module.scss' or its corresponding type declarations. -@fluentui/react-docsite-components: 7 import * as styles from '../Page.module.scss'; -@fluentui/react-docsite-components: ~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-docsite-components: src/components/Page/sections/OtherPageSection.tsx:4:25 - error TS2307: Cannot find module '../Page.module.scss' or its corresponding type declarations. -@fluentui/react-docsite-components: 4 import * as styles from '../Page.module.scss'; -@fluentui/react-docsite-components: ~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-docsite-components: src/components/Page/sections/OverviewSection.tsx:4:25 - error TS2307: Cannot find module '../Page.module.scss' or its corresponding type declarations. -@fluentui/react-docsite-components: 4 import * as styles from '../Page.module.scss'; -@fluentui/react-docsite-components: ~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-docsite-components: src/components/PlatformPicker/PlatformPicker.tsx:6:25 - error TS2307: Cannot find module './PlatformPicker.module.scss' or its corresponding type declarations. -@fluentui/react-docsite-components: 6 import * as styles from './PlatformPicker.module.scss'; -@fluentui/react-docsite-components: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-docsite-components: src/components/Table/Table.tsx:4:25 - error TS2307: Cannot find module './Table.module.scss' or its corresponding type declarations. -@fluentui/react-docsite-components: 4 import * as styles from './Table.module.scss'; -@fluentui/react-docsite-components: ~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-docsite-components: src/components/TopNav/TopNav.tsx:8:25 - error TS2307: Cannot find module './TopNav.module.scss' or its corresponding type declarations. -@fluentui/react-docsite-components: 8 import * as styles from './TopNav.module.scss'; -@fluentui/react-docsite-components: ~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-docsite-components: src/components/Video/Video.tsx:4:25 - error TS2307: Cannot find module './Video.module.scss' or its corresponding type declarations. -@fluentui/react-docsite-components: 4 import * as styles from './Video.module.scss'; -@fluentui/react-docsite-components: ~~~~~~~~~~~~~~~~~~~~~ -@fluentui/react-docsite-components: Found 12 errors in 12 files. -@fluentui/react-docsite-components: Errors Files -@fluentui/react-docsite-components: 1 src/components/Page/Page.tsx:21 -@fluentui/react-docsite-components: 1 src/components/Page/sections/BestPracticesSection.tsx:7 -@fluentui/react-docsite-components: 1 src/components/Page/sections/ExamplesSection.tsx:4 -@fluentui/react-docsite-components: 1 src/components/Page/sections/FeedbackSection.tsx:5 -@fluentui/react-docsite-components: 1 src/components/Page/sections/ImplementationSection.tsx:5 -@fluentui/react-docsite-components: 1 src/components/Page/sections/MarkdownSection.tsx:7 -@fluentui/react-docsite-components: 1 src/components/Page/sections/OtherPageSection.tsx:4 -@fluentui/react-docsite-components: 1 src/components/Page/sections/OverviewSection.tsx:4 -@fluentui/react-docsite-components: 1 src/components/PlatformPicker/PlatformPicker.tsx:6 -@fluentui/react-docsite-components: 1 src/components/Table/Table.tsx:4 -@fluentui/react-docsite-components: 1 src/components/TopNav/TopNav.tsx:8 -@fluentui/react-docsite-components: 1 src/components/Video/Video.tsx:4 -@fluentui/react-docsite-components: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-docsite-components: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-docsite-components: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react-docsite-components: error Command failed with exit code 1. -@fluentui/storybook: [XX:XX:XX XM] x Error detected while running '_wrapFunction' -@fluentui/storybook: [XX:XX:XX XM] x ------------------------------------ -@fluentui/storybook: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib-commonjs --module commonjs --pretty --project "/office-ui-fabric-react/packages/storybook/tsconfig.json" -@fluentui/storybook: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/storybook: at ChildProcess.emit (events.js:314:20) -@fluentui/storybook: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/storybook: at maybeClose (internal/child_process.js:1022:16) -@fluentui/storybook: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/storybook: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/storybook: [XX:XX:XX XM] x stdout: -@fluentui/storybook: [XX:XX:XX XM] x ../merge-styles/lib/mergeStyleSets.d.ts:64:145 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/storybook: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/storybook: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/storybook: ~~~~~~~~~ -@fluentui/storybook: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/storybook: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/storybook: ~~~~~~~~~ -@fluentui/storybook: This type parameter probably needs an `extends object` constraint. -@fluentui/storybook: ../merge-styles/lib/mergeStyleSets.d.ts:64:38 -@fluentui/storybook: 64 export declare function mergeCssSets(styleSets: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/storybook: ~~~~~~~~~ -@fluentui/storybook: This type parameter probably needs an `extends object` constraint. -@fluentui/storybook: ../merge-styles/lib/mergeStyleSets.d.ts:74:198 - error TS2344: Type 'TStyleSet1 & TStyleSet2' does not satisfy the constraint 'IStyleSet'. -@fluentui/storybook: Type 'TStyleSet1 & TStyleSet2' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/storybook: 74 export declare function mergeCssSets(styleSets: [TStyleSet1 | false | null | undefined, TStyleSet2 | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/storybook: ~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/storybook: ../merge-styles/lib/mergeStyleSets.d.ts:88:49 - error TS2344: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' does not satisfy the constraint 'IStyleSet'. -@fluentui/storybook: Type 'TStyleSet1 & TStyleSet2 & TStyleSet3' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/storybook: 88 ], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/storybook: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -@fluentui/storybook: ../merge-styles/lib/mergeStyleSets.d.ts:113:144 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/storybook: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/storybook: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/storybook: ~~~~~~~~~ -@fluentui/storybook: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/storybook: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/storybook: ~~~~~~~~~ -@fluentui/storybook: This type parameter probably needs an `extends object` constraint. -@fluentui/storybook: ../merge-styles/lib/mergeStyleSets.d.ts:113:38 -@fluentui/storybook: 113 export declare function mergeCssSets(styleSet: [TStyleSet | false | null | undefined], options?: IStyleOptions): IProcessedStyleSet; -@fluentui/storybook: ~~~~~~~~~ -@fluentui/storybook: This type parameter probably needs an `extends object` constraint. -@fluentui/storybook: ../react/lib/components/SelectedItemsList/BaseSelectedItemsList.d.ts:29:5 - error TS2416: Property 'componentDidUpdate' in type 'BaseSelectedItemsList' is not assignable to the same property in base type 'Component, any>'. -@fluentui/storybook: Type '(oldProps: P, oldState: IBaseSelectedItemsListState) => void' is not assignable to type '(prevProps: Readonly

, prevState: Readonly>, snapshot?: any) => void'. -@fluentui/storybook: Types of parameters 'oldState' and 'prevState' are incompatible. -@fluentui/storybook: Type 'Readonly>' is not assignable to type 'IBaseSelectedItemsListState'. -@fluentui/storybook: Types of property 'items' are incompatible. -@fluentui/storybook: Type 'T[]' is not assignable to type 'IObjectWithKey[]'. -@fluentui/storybook: Type 'T' is not assignable to type 'IObjectWithKey'. -@fluentui/storybook: 29 componentDidUpdate(oldProps: P, oldState: IBaseSelectedItemsListState): void; -@fluentui/storybook: ~~~~~~~~~~~~~~~~~~ -@fluentui/storybook: ../react/lib/components/SelectedItemsList/BaseSelectedItemsList.d.ts:8:44 -@fluentui/storybook: 8 export declare class BaseSelectedItemsList> extends React.Component> implements IBaseSelectedItemsList { -@fluentui/storybook: ~ -@fluentui/storybook: This type parameter probably needs an `extends object` constraint. -@fluentui/storybook: ../utilities/lib/styled.d.ts:17:97 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/storybook: Type 'TStyleSet' is not assignable to type '{ [P in keyof Omit]: IStyle; }'. -@fluentui/storybook: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/storybook: ~~~~~~~~~ -@fluentui/storybook: ../utilities/lib/styled.d.ts:17:48 -@fluentui/storybook: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/storybook: ~~~~~~~~~ -@fluentui/storybook: This type parameter probably needs an `extends object` constraint. -@fluentui/storybook: ../utilities/lib/styled.d.ts:17:48 -@fluentui/storybook: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/storybook: ~~~~~~~~~ -@fluentui/storybook: This type parameter probably needs an `extends object` constraint. -@fluentui/storybook: ../utilities/lib/styled.d.ts:19:60 - error TS2344: Type 'TStyleSet' does not satisfy the constraint 'IStyleSet'. -@fluentui/storybook: 19 __cachedInputs__: (IStyleFunctionOrObject | undefined)[]; -@fluentui/storybook: ~~~~~~~~~ -@fluentui/storybook: ../utilities/lib/styled.d.ts:17:48 -@fluentui/storybook: 17 export declare type StyleFunction = IStyleFunctionOrObject & { -@fluentui/storybook: ~~~~~~~~~ -@fluentui/storybook: This type parameter probably needs an `extends object` constraint. -@fluentui/storybook: Found 7 errors in 3 files. -@fluentui/storybook: Errors Files -@fluentui/storybook: 4 ../merge-styles/lib/mergeStyleSets.d.ts:64 -@fluentui/storybook: 1 ../react/lib/components/SelectedItemsList/BaseSelectedItemsList.d.ts:29 -@fluentui/storybook: 2 ../utilities/lib/styled.d.ts:17 -@fluentui/storybook: [XX:XX:XX XM] x ------------------------------------ -@fluentui/storybook: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/storybook: [XX:XX:XX XM] x Other tasks that did not complete: [ts:esm] -@fluentui/storybook: error Command failed with exit code 1. -@fluentui/perf: [XX:XX:XX XM] x Cannot find config file "null". Please create a file called "just.config.js" in the root of the project next to "package.json". -@fluentui/perf: [XX:XX:XX XM] x Command not defined: ts -@fluentui/perf: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/perf: error Command failed with exit code 1. -@fluentui/react-examples: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/react-examples: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-examples: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/packages/react-examples/tsconfig.json" -@fluentui/react-examples: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/react-examples: at ChildProcess.emit (events.js:314:20) -@fluentui/react-examples: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/react-examples: at maybeClose (internal/child_process.js:1022:16) -@fluentui/react-examples: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/react-examples: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/react-examples: [XX:XX:XX XM] x stdout: -@fluentui/react-examples: [XX:XX:XX XM] x src/react-experiments/Tile/Tile.Folder.Example.tsx:85:56 - error TS2339: Property 'tileFolder' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 85 -@fluentui/react-examples: ~~~~~~~~~~ -@fluentui/react-examples: src/react-experiments/Tile/Tile.Media.Example.tsx:21:50 - error TS2339: Property 'activityBlock' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 21 -@fluentui/react-examples: ~~~~~~~~~~~~~ -@fluentui/react-examples: src/react-experiments/Tile/Tile.Media.Example.tsx:41:50 - error TS2339: Property 'activityBlock' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 41 -@fluentui/react-examples: ~~~~~~~~~~~~~ -@fluentui/react-examples: src/react-experiments/Tile/Tile.Media.Example.tsx:61:50 - error TS2339: Property 'activityBlock' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 61 -@fluentui/react-examples: ~~~~~~~~~~~~~ -@fluentui/react-examples: src/react-experiments/Tile/Tile.Media.Example.tsx:81:50 - error TS2339: Property 'activityBlock' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 81 -@fluentui/react-examples: ~~~~~~~~~~~~~ -@fluentui/react-examples: src/react-experiments/VirtualizedList/VirtualizedList.Basic.Example.tsx:33:72 - error TS2339: Property 'fixedHeight' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 33 -@fluentui/react-examples: ~~~~~~~~~~~ -@fluentui/react-examples: src/react-experiments/VirtualizedList/VirtualizedList.Basic2.Example.tsx:39:98 - error TS2339: Property 'fixedHeight' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 39 -@fluentui/react-examples: ~~~~~~~~~~~ -@fluentui/react-examples: src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Example.tsx:22:30 - error TS2339: Property 'wrapper' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 22

-@fluentui/react-examples: ~~~~~~~ -@fluentui/react-examples: src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Example.tsx:34:44 - error TS2339: Property 'button' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 34 -@fluentui/react-examples: ~~~~~~ -@fluentui/react-examples: src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Example.tsx:35:44 - error TS2339: Property 'button' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 35 -@fluentui/react-examples: ~~~~~~ -@fluentui/react-examples: src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Expandable.Example.tsx:27:30 - error TS2339: Property 'wrapper' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 27
-@fluentui/react-examples: ~~~~~~~ -@fluentui/react-examples: src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Expandable.Example.tsx:34:31 - error TS2339: Property 'button' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 34 className={styles.button} -@fluentui/react-examples: ~~~~~~ -@fluentui/react-examples: src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Expandable.Example.tsx:49:44 - error TS2339: Property 'button' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 49 -@fluentui/react-examples: ~~~~~~ -@fluentui/react-examples: src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Expandable.Example.tsx:50:44 - error TS2339: Property 'button' does not exist on type 'typeof import("*.scss")'. -@fluentui/react-examples: 50 -@fluentui/react-examples: ~~~~~~ -@fluentui/react-examples: Found 14 errors in 6 files. -@fluentui/react-examples: Errors Files -@fluentui/react-examples: 1 src/react-experiments/Tile/Tile.Folder.Example.tsx:85 -@fluentui/react-examples: 4 src/react-experiments/Tile/Tile.Media.Example.tsx:21 -@fluentui/react-examples: 1 src/react-experiments/VirtualizedList/VirtualizedList.Basic.Example.tsx:33 -@fluentui/react-examples: 1 src/react-experiments/VirtualizedList/VirtualizedList.Basic2.Example.tsx:39 -@fluentui/react-examples: 3 src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Example.tsx:22 -@fluentui/react-examples: 4 src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Expandable.Example.tsx:27 -@fluentui/react-examples: [XX:XX:XX XM] x ------------------------------------ -@fluentui/react-examples: [XX:XX:XX XM] x Error previously detected. See above for error messages. -@fluentui/react-examples: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs] -@fluentui/react-examples: error Command failed with exit code 1. -@fluentui/public-docsite: [XX:XX:XX XM] x Error detected while running 'ts:esm' -@fluentui/public-docsite: [XX:XX:XX XM] x ------------------------------------ -@fluentui/public-docsite: [XX:XX:XX XM] x Error: Command failed: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --outDir lib --module esnext --pretty --project "/office-ui-fabric-react/apps/public-docsite/tsconfig.json" -@fluentui/public-docsite: at ChildProcess.exithandler (child_process.js:308:12) -@fluentui/public-docsite: at ChildProcess.emit (events.js:314:20) -@fluentui/public-docsite: at ChildProcess.EventEmitter.emit (domain.js:506:15) -@fluentui/public-docsite: at maybeClose (internal/child_process.js:1022:16) -@fluentui/public-docsite: at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) -@fluentui/public-docsite: at Process.callbackTrampoline (internal/async_hooks.js:126:14) -@fluentui/public-docsite: [XX:XX:XX XM] x stdout: -@fluentui/public-docsite: [XX:XX:XX XM] x src/components/Nav/Nav.tsx:90:30 - error TS2339: Property 'navWrapper' does not exist on type 'typeof import("*.scss")'. -@fluentui/public-docsite: 90
-@fluentui/public-docsite: ~~~~~~~~~~ -@fluentui/public-docsite: src/components/Nav/Nav.tsx:93:34 - error TS2339: Property 'nav' does not exist on type 'typeof import("*.scss")'. -@fluentui/public-docsite: 93