tsconfig.json 588 B

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