time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

tsconfig.json (579B)


      1 {
      2     "compilerOptions": {
      3         "target": "esnext",
      4         "module": "commonjs",
      5         "lib": [
      6             "es6"
      7         ],
      8         "noImplicitAny": true,
      9         "noImplicitThis": true,
     10         "strictNullChecks": false,
     11         "baseUrl": "./",
     12         "moduleResolution": "node",
     13         "allowJs": true,
     14         "typeRoots": [
     15             "./"
     16         ],
     17         "types": [
     18             "node"
     19         ],
     20         "forceConsistentCasingInFileNames": true
     21     },
     22     "files": [
     23         "BigInteger.d.ts",
     24         "spec/tsDefinitions.ts"
     25     ]
     26 }