This can be achieved with little extra effort.
- Copy the unpacked script files from the Atlas install directories to the local web directory
- Add the following code in the Page_Load handler
Sub OverrideAtlasScript(ByVal atlasScriptName As String, ByVal newScriptPath As String)
Dim scriptKey As String = ClientScript.GetWebResourceUrl(ScriptManager1.GetType(), atlasScriptName)
ClientScript.RegisterClientScriptInclude(scriptKey, newScriptPath)
End Sub
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
OverrideAtlasScript("Atlas.js", "ScriptLibrary/Debug/Atlas.js")
End Sub
This is an hack and it works. The code should not be used for production.