tsconfig.json 944 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "compilerOptions": {
  3. "experimentalDecorators": true,
  4. "module": "commonjs",
  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": "./src/",
  25. "paths": {
  26. "babylonjs": [
  27. "../../dist/preview release/babylon.module.d.ts",
  28. ],
  29. "babylonjs-gltf2interface": [
  30. "../../dist/preview release/glTF2Interface/babylon.glTF2Interface.d.ts"
  31. ],
  32. },
  33. "outDir": "./build"
  34. }
  35. }