tsconfig.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "compilerOptions": {
  3. "experimentalDecorators": true,
  4. "module": "esnext",
  5. "target": "es5",
  6. "noImplicitAny": true,
  7. "noImplicitReturns": true,
  8. "noImplicitThis": true,
  9. "noUnusedLocals": true,
  10. "strictNullChecks": true,
  11. "declaration": true,
  12. "sourceMap": true,
  13. "lib": [
  14. "es5",
  15. "dom",
  16. "es2015.promise",
  17. "es2015.collection",
  18. "es2015.iterable"
  19. ],
  20. "skipDefaultLibCheck": true,
  21. "skipLibCheck": true,
  22. "baseUrl": "./src/",
  23. "rootDir": "./src/",
  24. "paths": {
  25. "babylonjs": [
  26. "../../dist/preview release/babylon.d.ts"
  27. ],
  28. "babylonjs-gui": [
  29. "../../dist/preview release/gui/babylon.gui.module.d.ts"
  30. ],
  31. "babylonjs-gltf2interface": [
  32. "../../dist/preview release/glTF2Interface/babylon.glTF2Interface.d.ts"
  33. ],
  34. "babylonjs-loaders": [
  35. "../../dist/preview release/loaders/babylonjs.loaders.module.d.ts"
  36. ],
  37. "babylonjs-serializers": [
  38. "../../dist/preview release/serializers/babylonjs.serializers.module.d.ts"
  39. ],
  40. "Split": [
  41. "./helpers/ISplit.d.ts"
  42. ]
  43. },
  44. "outDir": "./build"
  45. }
  46. }