tsconfig.json 1.5 KB

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