@glint/core
Version:
A CLI for performing typechecking on Glimmer templates
17 lines (16 loc) • 629 B
TypeScript
import { GlintConfig } from './config.js';
export { GlintConfig } from './config.js';
export { GlintEnvironment } from './environment.js';
export { ConfigLoader, findTypeScript } from './loader.js';
/**
* Loads glint configuration, starting from the given directory
* and searching upwards and raising an error if no configuration
* is found.
*/
export declare function loadConfig(from: string): GlintConfig;
/**
* Loads glint configuration, starting from the given directory
* and searching upwards. Returns `null` if no configuration is
* found.
*/
export declare function findConfig(from: string): GlintConfig | null;