tsconfig.json 494 B

123456789101112131415161718192021222324252627
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "rootDir": "src",
  5. "outDir": "lib/types",
  6. "noImplicitAny": false,
  7. "noUncheckedIndexedAccess": false,
  8. "exactOptionalPropertyTypes": false,
  9. "noImplicitOverride": false,
  10. "noUnusedLocals": false,
  11. "noUnusedParameters": false
  12. },
  13. "include": [
  14. "src"
  15. ],
  16. "references": [
  17. {
  18. "path": "../cosmokit"
  19. },
  20. {
  21. "path": "../cordis"
  22. },
  23. {
  24. "path": "../loader"
  25. }
  26. ]
  27. }