[READ-ONLY] Mirror of https://github.com/danielroe/fnv1a-64. Tiny, fast, dependency-free 64-bit FNV-1a string hash for Node and the browser.
64-bit fnv fnv-1a fnv1a hash non-cryptographic
0

Configure Feed

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

fnv1a-64 / tsconfig.json
504 B 24 lines
1{ 2 "compilerOptions": { 3 "target": "es2022", 4 "lib": [ 5 "es2022" 6 ], 7 "moduleDetection": "force", 8 "module": "preserve", 9 "resolveJsonModule": true, 10 "allowJs": true, 11 "strict": true, 12 "noImplicitOverride": true, 13 "noUncheckedIndexedAccess": true, 14 "noEmit": true, 15 "esModuleInterop": true, 16 "forceConsistentCasingInFileNames": true, 17 "isolatedModules": true, 18 "verbatimModuleSyntax": true, 19 "skipLibCheck": true 20 }, 21 "exclude": [ 22 "dist" 23 ] 24}