@@ -67,7 +67,7 @@ export async function getWorkspaceSettings(
67
67
args : resolveVariables ( config . get < string [ ] > ( `args` ) ?? [ ] , workspace ) ,
68
68
path : resolveVariables ( config . get < string [ ] > ( `path` ) ?? [ ] , workspace ) ,
69
69
interpreter : resolveVariables ( interpreter , workspace ) ,
70
- importStrategy : config . get < string > ( `importStrategy` ) ?? 'fromEnvironment ' ,
70
+ importStrategy : config . get < string > ( `importStrategy` ) ?? 'useBundled ' ,
71
71
showNotifications : config . get < string > ( `showNotifications` ) ?? 'off' ,
72
72
} ;
73
73
return workspaceSetting ;
@@ -95,7 +95,7 @@ export async function getGlobalSettings(namespace: string, includeInterpreter?:
95
95
args : getGlobalValue < string [ ] > ( config , 'args' , [ ] ) ,
96
96
path : getGlobalValue < string [ ] > ( config , 'path' , [ ] ) ,
97
97
interpreter : interpreter ,
98
- importStrategy : getGlobalValue < string > ( config , 'importStrategy' , 'fromEnvironment ' ) ,
98
+ importStrategy : getGlobalValue < string > ( config , 'importStrategy' , 'useBundled ' ) ,
99
99
showNotifications : getGlobalValue < string > ( config , 'showNotifications' , 'off' ) ,
100
100
} ;
101
101
return setting ;
0 commit comments