@ts-ast-parser/core
Version:
Reflects a simplified version of the TypeScript AST for generating documentation
39 lines • 1.21 kB
TypeScript
/**
* These are the default globs used to exclude files when using
* the `parseFromGlob` function.
*
* @see {@link https://github.com/sindresorhus/globby | globby}
*/
export declare const DEFAULT_GLOBBY_EXCLUDE: string[];
/**
* These are the default TypeScript Compiler options used when we're unable
* to find TSConfig file in the root of the project.
*
* @see {@link https://www.typescriptlang.org/tsconfig#compilerOptions | CompilerOptions}
*/
export declare const TS_DEFAULT_COMPILER_OPTIONS: {
experimentalDecorators: boolean;
target: string;
module: string;
lib: string[];
declaration: boolean;
skipLibCheck: boolean;
skipDefaultLibCheck: boolean;
};
/**
* These are the default TypeScript Compiler options used when we're analyzing
* a JavaScript project.
*
* @see {@link https://www.typescriptlang.org/tsconfig#compilerOptions | CompilerOptions}
*/
export declare const JS_DEFAULT_COMPILER_OPTIONS: {
target: string;
module: string;
lib: string[];
allowJs: boolean;
skipLibCheck: boolean;
skipDefaultLibCheck: boolean;
moduleResolution: string;
typeRoots: never[];
};
//# sourceMappingURL=default-compiler-options.d.ts.map