microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fd3365ec07003c2bf6e51e0a8f3fe67e318b23cb

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