tsconfig.json 809 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "none",
  5. "declaration": true,
  6. "experimentalDecorators": true,
  7. "emitDecoratorMetadata": true,
  8. "strictNullChecks": true,
  9. "noImplicitAny": false,
  10. "noFallthroughCasesInSwitch": true,
  11. "sourceMap": true,
  12. "lib": [
  13. "es5",
  14. "dom",
  15. "es2015.promise",
  16. "es2015.collection",
  17. "es2015.iterable"
  18. ],
  19. "baseUrl": "./src/",
  20. "rootDir": "./src/",
  21. "outDir": "../build/",
  22. "paths": {
  23. "babylonjs-gui": [
  24. "../../../../dist/preview release/gui/babylon.gui.modules.d.ts"
  25. ]
  26. }
  27. },
  28. "exclude": [
  29. "node_modules"
  30. ]
  31. }