tsconfig-compiler.json 407 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "ES5",
  4. "module": "commonjs",
  5. "declaration": true,
  6. "sourceMap": true,
  7. "outDir": "../../.temp/tests/ponicode",
  8. "rootDir": "babylon",
  9. "strict": true,
  10. "esModuleInterop": true,
  11. "baseUrl": "../../",
  12. "paths": {
  13. "babylonjs/*": [
  14. ".temp/manualBuildCore/*"
  15. ]
  16. },
  17. "types": [
  18. "node",
  19. "jest"
  20. ]
  21. },
  22. "include": [
  23. "babylon"
  24. ],
  25. "exclude": []
  26. }