tsconfig.json 1.4 KB

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