tsconfig.json 467 B

123456789101112131415161718192021222324252627
  1. {
  2. "extends": "../../tsconfigbase",
  3. "compilerOptions": {
  4. "outDir": "build",
  5. "types": ["jest"],
  6. "composite": false,
  7. "rootDir": "src"
  8. },
  9. "include": ["src/*"],
  10. "references": [
  11. {
  12. "path": "../../packages/codemirror"
  13. },
  14. {
  15. "path": "../../packages/docregistry"
  16. },
  17. {
  18. "path": "../../packages/fileeditor"
  19. },
  20. {
  21. "path": "../../packages/services"
  22. },
  23. {
  24. "path": "../../testutils"
  25. }
  26. ]
  27. }