tsconfig.json 1005 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "compilerOptions": {
  3. "experimentalDecorators": true,
  4. "module": "commonjs",
  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": "./",
  24. "paths": {
  25. "babylonjs": [
  26. "../../dist/preview release/babylon.d.ts",
  27. ],
  28. "babylonjs-gltf2interface": [
  29. "../../dist/preview release/glTF2Interface/babylon.glTF2Interface.d.ts"
  30. ],
  31. },
  32. "outDir": "./build"
  33. },
  34. "include": [
  35. "src/**/*"
  36. ],
  37. "exclude": [
  38. "node_modules",
  39. "**/*.spec.ts"
  40. ]
  41. }