cspell-dictionary 8.9.0 → 8.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -41,7 +41,7 @@ export interface SpellingDictionaryOptions {
|
|
|
41
41
|
/**
|
|
42
42
|
* This is a NO Suggest dictionary used for words to be ignored.
|
|
43
43
|
*/
|
|
44
|
-
noSuggest?: boolean;
|
|
44
|
+
noSuggest?: boolean | undefined;
|
|
45
45
|
/**
|
|
46
46
|
* Extra dictionary information used in improving suggestions
|
|
47
47
|
* based upon locale.
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" resolution-mode="require"/>
|
|
2
1
|
import type { ITrie, SuggestionCollector, SuggestionResult } from 'cspell-trie-lib';
|
|
3
2
|
import type { FindResult, HasOptions, SpellingDictionary, SpellingDictionaryOptions } from './SpellingDictionary.js';
|
|
4
3
|
import type { SuggestOptions } from './SuggestOptions.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cspell-dictionary",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.10.0",
|
|
4
4
|
"description": "A spelling dictionary library useful for checking words and getting suggestions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"node": ">=18"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@cspell/cspell-pipe": "8.
|
|
51
|
-
"@cspell/cspell-types": "8.
|
|
52
|
-
"cspell-trie-lib": "8.
|
|
50
|
+
"@cspell/cspell-pipe": "8.10.0",
|
|
51
|
+
"@cspell/cspell-types": "8.10.0",
|
|
52
|
+
"cspell-trie-lib": "8.10.0",
|
|
53
53
|
"fast-equals": "^5.0.1",
|
|
54
54
|
"gensequence": "^7.0.0"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "a5dde6ae7e2ac86ac956220d4b8c39a0e58e1bc6"
|
|
57
57
|
}
|