UNPKG

aoc-automation

Version:

Advent of Code tool to automate the repetitive parts of AoC.

21 lines (20 loc) 616 B
import type { Setup } from "../types/common"; declare const tsconfigJSON: ({ strict }: Setup) => { compilerOptions: { target: string; module: string; removeComments: boolean; declaration: boolean; sourceMap: boolean; outDir: string; preserveConstEnums: boolean; strict: boolean; allowSyntheticDefaultImports: boolean; moduleResolution: string; forceConsistentCasingInFileNames: boolean; importHelpers: boolean; }; include: string[]; exclude: string[]; }; export default tsconfigJSON;