tsconfig.json 366 B

123456789101112131415161718192021
  1. {
  2. "extends": "../../tsconfigbase",
  3. "compilerOptions": {
  4. "outDir": "build",
  5. "types": ["jest", "node"],
  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": "../../testutils"
  19. }
  20. ]
  21. }