supercop.ts

cross-compiled javascript implementation of ed25519 based on supercop-ref10
git clone git://git.finwo.net/lib/supercop.ts
Log | Files | Refs | README | LICENSE

tsconfig.base.json (496B)


      1 {
      2   "compilerOptions": {
      3     "strict": true,
      4     "strictNullChecks": true,
      5     "esModuleInterop": true,
      6     "experimentalDecorators": true,
      7     "emitDecoratorMetadata": true,
      8     "forceConsistentCasingInFileNames": true,
      9     "skipLibCheck": true,
     10     "allowSyntheticDefaultImports": true,
     11     "sourceMap": true,
     12     "resolveJsonModule": true,
     13     "declaration": true,
     14     "declarationMap": true,
     15     "types": [
     16       "node"
     17     ]
     18   },
     19   "include": [
     20     "../src/*.ts",
     21     "../src/**/*.ts"
     22   ]
     23 }