mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
* Evals * Remove redundant line * Fix tsc error * Disable debug mode * Add option to kill run
7 lines
308 B
TypeScript
7 lines
308 B
TypeScript
import * as path from "path"
|
|
import { fileURLToPath } from "url"
|
|
|
|
export const __dirname = path.dirname(fileURLToPath(import.meta.url))
|
|
|
|
export const extensionDevelopmentPath = path.resolve(__dirname, "..", "..", "..", "..")
|
|
export const exercisesPath = path.resolve(extensionDevelopmentPath, "..", "evals")
|