|
| 1 | +var require = { |
| 2 | + waitSeconds: 200, |
| 3 | + baseUrl: '..', |
| 4 | + paths: { |
| 5 | + app: './app', |
| 6 | + |
| 7 | + JSXTransformer: 'bower_components/react/JSXTransformer', |
| 8 | + jsx: 'bower_components/jsx_requirejs_plugin/js/jsx', |
| 9 | + |
| 10 | + babel: 'bower_components/requirejs_babel/babel-4.6.6.min', |
| 11 | + es6: 'bower_components/requirejs_babel/es6', |
| 12 | + |
| 13 | + react: 'bower_components/react/react-with-addons', |
| 14 | + reflux: 'bower_components/reflux/dist/reflux', |
| 15 | + text: 'bower_components/requirejs_text/text' |
| 16 | + //jquery: 'bower_components/jquery/dist/jquery', |
| 17 | + //lodash: 'bower_components/lodash/lodash', |
| 18 | + //semantic: 'node_modules/react-semantify/amd', |
| 19 | + //react: 'bower_components/react/react-with-addons', |
| 20 | + //'react-router': 'bower_components/react_router/build/global/ReactRouter', |
| 21 | + //'react-router-shim': 'react-router-shim', |
| 22 | + //JSXTransformer: 'bower_components/jsx_requirejs_plugin/js/JSXTransformer', |
| 23 | + //jsx: 'bower_components/jsx_requirejs_plugin/js/jsx', |
| 24 | + //reflux: 'bower_components/reflux/dist/reflux', |
| 25 | + //flux: 'flux', |
| 26 | + //lib: 'lib' |
| 27 | + }, |
| 28 | + shim: { |
| 29 | + //babel: { |
| 30 | + // deps: ['babel_polyfill'] |
| 31 | + //} |
| 32 | + //'react-router-shim': { |
| 33 | + // exports: 'React' |
| 34 | + //}, |
| 35 | + //'react-router': { |
| 36 | + // deps: ['react-router-shim'], |
| 37 | + // exports: 'ReactRouter' |
| 38 | + //} |
| 39 | + }, |
| 40 | + jsx: { |
| 41 | + fileExtension: '.js', |
| 42 | + harmony: true, |
| 43 | + stripTypes: true |
| 44 | + }, |
| 45 | + es6: { |
| 46 | + fileExtension: '.js', |
| 47 | + harmony: true, |
| 48 | + stripTypes: true |
| 49 | + } |
| 50 | +}; |
0 commit comments