UNPKG

@strapi/strapi

Version:

An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite

19 lines 467 B
import ts from 'typescript'; import type { Logger } from './logger'; interface TsConfig { config: ts.ParsedCommandLine; path: string; } /** * @description Load a tsconfig.json file and return the parsed config. * * @internal */ declare const loadTsConfig: ({ cwd, path, logger, }: { cwd: string; path: string; logger: Logger; }) => TsConfig | undefined; export { loadTsConfig }; export type { TsConfig }; //# sourceMappingURL=tsconfig.d.ts.map