@badgerdigital - Check if it is amd compatible - if it is you can directly use the define(['./path to your file'], function(moment) { ....return {}; });
If not create a file named configuration.json that has the json like this: {
"paths": {
"moment": "./path to your file",
},
"shim": {
"moment": {
"export": "moment"
}
}
}
To require this in your main script file -- include this tag:
* @NAmdConfig ./relative path to your configuration.json