mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-08 22:21:23 +00:00
- Add setAsDefault parameter to handleModeSwitch() method - Add setAsDefaultMode() method to update global state - Add setDefaultMode message type and handler - Update tests to use new setAsDefault parameter - Maintain backward compatibility with existing behavior - Address concern about removing persistent default mode functionality This allows users to optionally set a mode as the global default while maintaining multi-window mode isolation.
9 lines
275 B
JavaScript
9 lines
275 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var nextConfig = {
|
|
webpack: function (config) {
|
|
config.resolve.extensionAlias = { ".js": [".ts", ".tsx", ".js", ".jsx"] };
|
|
return config;
|
|
},
|
|
};
|
|
exports.default = nextConfig;
|