@cspell/cspell-tools
Version:
Tools to assist with the development of cSpell
31 lines • 813 B
TypeScript
export interface CompileCommonAppOptions {
output?: string;
compress: boolean;
/**
* @deprecated Use maxDepth
*/
max_depth?: string;
maxDepth?: string;
merge?: string;
experimental?: string[];
split?: boolean;
sort?: boolean;
keepRawCase?: boolean;
trie?: boolean;
trie3?: boolean;
trie4?: boolean;
trieBase?: string;
listFile?: string[];
useLegacySplitter?: boolean;
/** Indicate that a config file should be created instead of building. */
init?: boolean;
}
export interface CompileAppOptions extends CompileCommonAppOptions {
sort: boolean;
keepRawCase: boolean;
}
export interface CompileTrieAppOptions extends CompileCommonAppOptions {
trie3: boolean;
trie4: boolean;
}
//# sourceMappingURL=AppOptions.d.ts.map