tsconfig.json 414 B

123456789101112131415161718192021222324
  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/codeeditor"
  13. },
  14. {
  15. "path": "../../packages/codemirror"
  16. },
  17. {
  18. "path": "../../packages/observables"
  19. },
  20. {
  21. "path": "../../testutils"
  22. }
  23. ]
  24. }