[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 / tsconfig.json
510 B 26 lines
1{ 2 "compilerOptions": { 3 "module": "NodeNext", 4 "moduleResolution": "NodeNext", 5 "target": "ESNext", 6 "declaration": true, 7 "strict": false, 8 "esModuleInterop": true, 9 "skipLibCheck": true, 10 "sourceMap": true, 11 "forceConsistentCasingInFileNames": true, 12 "allowSyntheticDefaultImports": true, 13 "isolatedModules": true, 14 "noEmit": true 15 }, 16 "ts-node": { 17 "esm": true 18 }, 19 "include": [ 20 "src/**/*", 21 "tests/**/*.ts" 22 ], 23 "exclude": [ 24 "node_modules" 25 ] 26}