not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
871 B

  1. // Copyright (c) 2015 Sam Parkinson
  2. // This program is free software; you can redistribute it and/or
  3. // modify it under the terms of the The GNU Affero General Public
  4. // License as published by the Free Software Foundation; either
  5. // version 3 of the License, or (at your option) any later version.
  6. //
  7. // You should have received a copy of the GNU Affero General Public
  8. // License along with this library; if not, write to the Free Software
  9. // Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA
  10. //
  11. requirejs.config({
  12. baseUrl: "lib",
  13. shim: {
  14. easel: {
  15. exports: "createjs"
  16. }
  17. },
  18. paths: {
  19. activity: "../js",
  20. easel: "../lib/easeljs",
  21. twewn: "../lib/tweenjs",
  22. prefixfree: "../bower_components/prefixfree/prefixfree.min"
  23. },
  24. packages: []
  25. });
  26. requirejs(["activity/activity"]);