mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 08:38:00 +00:00
17 lines
No EOL
259 B
JavaScript
17 lines
No EOL
259 B
JavaScript
require.config({
|
|
baseUrl:"./",
|
|
paths : {
|
|
"Tone" : "../Tone",
|
|
"Test" : "helper/Test",
|
|
"Examples" : "../examples/scripts/ExampleList"
|
|
},
|
|
shim: {
|
|
"Examples" : {
|
|
exports : "ExampleList"
|
|
}
|
|
}
|
|
});
|
|
|
|
require({FILES}, function(Test){
|
|
Test.run();
|
|
}); |