tsconfig.json 567 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "extends": "../../tsconfigbase",
  3. "compilerOptions": {
  4. "outDir": "build",
  5. "types": ["mocha"],
  6. "composite": false,
  7. "rootDir": "src"
  8. },
  9. "include": ["src/*"],
  10. "references": [
  11. {
  12. "path": "../../packages/apputils"
  13. },
  14. {
  15. "path": "../../packages/cells"
  16. },
  17. {
  18. "path": "../../packages/codeeditor"
  19. },
  20. {
  21. "path": "../../packages/codemirror"
  22. },
  23. {
  24. "path": "../../packages/console"
  25. },
  26. {
  27. "path": "../../packages/services"
  28. },
  29. {
  30. "path": "../../testutils"
  31. }
  32. ]
  33. }