tsconfig.json 549 B

123456789101112131415161718192021222324
  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. "forceConsistentCasingInFileNames": true
  19. },
  20. "files": [
  21. "BigInteger.d.ts",
  22. "spec/tsDefinitions.ts"
  23. ]
  24. }