less prototype, less bad code implementation of CCHM type theory
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
689 B

  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "lib": [
  5. "dom",
  6. "dom.iterable",
  7. "esnext"
  8. ],
  9. "outDir": "./dist/",
  10. "allowJs": true,
  11. "skipLibCheck": true,
  12. "esModuleInterop": true,
  13. "allowSyntheticDefaultImports": true,
  14. "strict": true,
  15. "forceConsistentCasingInFileNames": true,
  16. "noFallthroughCasesInSwitch": true,
  17. "downlevelIteration": true,
  18. "module": "esnext",
  19. "moduleResolution": "node",
  20. "resolveJsonModule": true,
  21. "isolatedModules": true,
  22. "noImplicitAny": true,
  23. "jsx": "react-jsx",
  24. "typeRoots": [
  25. "./node_modules/@types",
  26. "./typings"
  27. ]
  28. },
  29. "include": [
  30. "src",
  31. "typings"
  32. ]
  33. }