import "./exsolve.mjs"; import * as ts from "typescript"; //#endregion //#region src/tsconfig/types.d.ts type StripEnums> = { [K in keyof T]: T[K] extends boolean ? T[K] : T[K] extends string ? T[K] : T[K] extends object ? T[K] : T[K] extends Array ? T[K] : T[K] extends undefined ? undefined : any; }; interface TSConfig { compilerOptions?: StripEnums; exclude?: string[]; compileOnSave?: boolean; extends?: string | string[]; files?: string[]; include?: string[]; typeAcquisition?: ts.TypeAcquisition; references?: { path: string; }[]; } export type { TSConfig };