import type { ForgeTsCheckerOptions } from '@flatjs/forge-ts-checker'; export interface GlobalCompilerOptions { /** * The value indicates whether runs typescript type checker and linter on separate process. * @default true */ runTsChecker?: ForgeTsCheckerOptions['runTsChecker']; /** * The options for the watcher of `ts-checker`. */ watchOptions?: ForgeTsCheckerOptions['watchOptions']; }