Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

tsconfig.json 553B

1234567891011121314151617181920212223242526
  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. }