以下のコードの実行結果はどうなりますか? ```typescript let config: { readonly version: string; settings: { theme: string; }; } = { version: "1.0.0", settings: { theme: "dark" } }; config.settings.theme = "light"; console.log(config.settings.theme); ```