tsconfig.json 414 B

123456789101112131415161718192021
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "rootDir": "src",
  5. "outDir": "lib/types",
  6. "module": "preserve",
  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. }