[READ-ONLY] Mirror of https://github.com/FoxxMD/string-sameness. Compare the sameness of two strings foxxmd.github.io/string-sameness/
compare cosine-similarity dice-coefficient levenshtein-distance sameness string text typescript
0

Configure Feed

Select the types of activity you want to include in your feed.

string-sameness / typedoc.config.cjs
615 B 20 lines
1/** @type { import('typedoc').TypeDocOptionMap } */ 2module.exports = { 3 name: "string-sameness Docs", 4 entryPoints: [ 5 "./src", 6 "./src/matchingStrategies/index.ts", 7 "./src/normalization/index.ts" 8 ], 9 sort: ["source-order"], 10 categorizeByGroup: false, 11 searchGroupBoosts: { 12 "Functions": 1.5 13 }, 14 navigationLinks: { 15 "Docs": "http://foxxmd.github.io/string-sameness", 16 "GitHub": "https://github.com/foxxmd/string-sameness" 17 }, 18 plausibleSiteDomain: process.env.ANALYTICS ?? '', 19 plausibleSiteOrigin: process.env.ANALYTICS_DOMAIN ?? '', 20}