tsconfig.json 686 B

12345678910111213141516171819202122232425262728293031
  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. },
  29. "outDir": "./build"
  30. }
  31. }