tsconfig.json 395 B

1234567891011121314151617181920212223242526
  1. {
  2. "extends": "../../tsconfigbase",
  3. "compilerOptions": {
  4. "outDir": "lib",
  5. "rootDir": "src",
  6. "strictNullChecks": false
  7. },
  8. "include": ["src/*"],
  9. "references": [
  10. {
  11. "path": "../coreutils"
  12. },
  13. {
  14. "path": "../nbformat"
  15. },
  16. {
  17. "path": "../outputarea"
  18. },
  19. {
  20. "path": "../rendermime"
  21. },
  22. {
  23. "path": "../services"
  24. }
  25. ]
  26. }