aoc-automation
Version:
Advent of Code tool to automate the repetitive parts of AoC.
20 lines (19 loc) • 587 B
TypeScript
import type { Setup } from "../types/common";
declare const tsconfigJSON: ({ strict }: Setup) => {
compilerOptions: {
target: string;
module: string;
removeComments: boolean;
declaration: boolean;
outDir: string;
preserveConstEnums: boolean;
strict: boolean;
allowSyntheticDefaultImports: boolean;
moduleResolution: string;
forceConsistentCasingInFileNames: boolean;
importHelpers: boolean;
};
include: string[];
exclude: string[];
};
export default tsconfigJSON;