microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
6357dc0d0e1fb00a591a2a8aaf243804d727e52b

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

eng/common/scripts/helpers.js

7lines · modecode

1// @ts-check
2import { dirname, resolve } from "path";
3import { fileURLToPath } from "url";
4
5export const repoRoot = resolve(dirname(fileURLToPath(import.meta.url)), "../../..");
6export const prettier = resolve(repoRoot, "packages/compiler/node_modules/.bin/prettier");
7export const tsc = resolve(repoRoot, "packages/compiler/node_modules/.bin/tsc");
8