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