@clipboard-health/ai-rules
Version:
Pre-built AI agent rules for consistent coding standards.
19 lines (18 loc) • 695 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.PROFILES = exports.PATHS = void 0;
const node_path_1 = __importDefault(require("node:path"));
const packageRoot = node_path_1.default.join(__dirname, "..");
exports.PATHS = {
packageRoot,
outputDirectory: node_path_1.default.join(packageRoot, "..", "..", "dist", "packages", "ai-rules"),
};
exports.PROFILES = {
frontend: ["common", "frontend"],
backend: ["common", "backend"],
fullstack: ["common", "frontend", "backend"],
common: ["common"],
};