Skip to content

Commit

Permalink
Merge cd4d812 into c1095f4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Jan 7, 2022
2 parents c1095f4 + cd4d812 commit c77eb67
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion packages/cspell-types/src/CSpellSettingsDef.ts
Expand Up @@ -234,7 +234,10 @@ export interface CacheSettings {
/**
* Path to the cache location. Can be a file or a directory.
* If none specified `.cspellcache` will be used.
* Relative paths are relative to the config file in which
* Relative paths are relative to the config file in which it
* is defined.
*
* A prefix of `${cwd}` is replaced with the current working directory.
*/
cacheLocation?: FSPathResolvable;

Expand Down
4 changes: 3 additions & 1 deletion packages/cspell-types/src/index.ts
@@ -1,4 +1,6 @@
export { ConfigFields, type CSpellUserSettingsFields } from './configFields';
// Using old-style of `type` exports because the new style breaks some integrations.
export { ConfigFields } from './configFields';
export type { CSpellUserSettingsFields } from './configFields';
export * from './CSpellReporter';
export * from './CSpellSettingsDef';
export type { TextDocumentOffset, TextOffset } from './TextOffset';

0 comments on commit c77eb67

Please sign in to comment.