tsconfig.json 307 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "composite": false,
  4. "emitDeclarationOnly": false,
  5. "noEmit": true,
  6. "rootDir": "."
  7. },
  8. "extends": "../../../tsconfig.options.json",
  9. "include": [
  10. "**/*",
  11. "../types/**/*",
  12. "../../../types/**/*"
  13. ],
  14. "references": [
  15. {
  16. "path": ".."
  17. }
  18. ]
  19. }