tsconfig.json 421 B

123456789101112131415161718192021222324252627
  1. {
  2. "extends": "../../tsconfigbase",
  3. "compilerOptions": {
  4. "outDir": "lib",
  5. "rootDir": "src",
  6. "module": "commonjs",
  7. "types": ["node"]
  8. },
  9. "include": ["src/**/*"],
  10. "references": [
  11. {
  12. "path": "../coreutils"
  13. },
  14. {
  15. "path": "../nbformat"
  16. },
  17. {
  18. "path": "../observables"
  19. },
  20. {
  21. "path": "../settingregistry"
  22. },
  23. {
  24. "path": "../statedb"
  25. }
  26. ]
  27. }