mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
Add importModuleSpecifier specifier preference
This commit is contained in:
@@ -9,7 +9,6 @@ import * as Proto from '../protocol';
|
||||
import { ITypeScriptServiceClient } from '../typescriptService';
|
||||
import * as languageIds from '../utils/languageModeIds';
|
||||
|
||||
|
||||
// TODO: for TS 2.8
|
||||
type UserPreferences = any;
|
||||
|
||||
@@ -157,7 +156,8 @@ export default class FileConfigurationManager {
|
||||
document.uri);
|
||||
|
||||
return {
|
||||
quotePreference: config.get<'single' | 'double' | undefined>('quoteStyle')
|
||||
quotePreference: config.get<'single' | 'double' | undefined>('quoteStyle'),
|
||||
importModuleSpecifierPreference: config.get<'relative' | 'non-relative' | undefined>('importModuleSpecifier')
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user