aoc-automation
Version:
Advent of Code tool to automate the repetitive parts of AoC.
20 lines (17 loc) • 359 B
text/typescript
import type { Setup } from "../types/common";
import { stripIndent } from "common-tags";
const gitignoreTXT = ({ language }: Setup) => {
return stripIndent`
node_modules
*.temp.*
*/**/*.temp.*
*/**/input.txt
*.log
*/**/*.log
.idea
.vscode
.env
${language === "ts" ? "dist" : ""}
`;
};
export default gitignoreTXT;