@@ -62,7 +62,7 @@ export default class TypeScriptServiceClientHost extends Disposable {
62
62
constructor (
63
63
descriptions : LanguageDescription [ ] ,
64
64
context : vscode . ExtensionContext ,
65
- onCaseInsenitiveFileSystem : boolean ,
65
+ onCaseInsensitiveFileSystem : boolean ,
66
66
services : {
67
67
pluginManager : PluginManager ,
68
68
commandManager : CommandManager ,
@@ -82,7 +82,7 @@ export default class TypeScriptServiceClientHost extends Disposable {
82
82
const allModeIds = this . getAllModeIds ( descriptions , services . pluginManager ) ;
83
83
this . client = this . _register ( new TypeScriptServiceClient (
84
84
context ,
85
- onCaseInsenitiveFileSystem ,
85
+ onCaseInsensitiveFileSystem ,
86
86
services ,
87
87
allModeIds ) ) ;
88
88
@@ -99,7 +99,7 @@ export default class TypeScriptServiceClientHost extends Disposable {
99
99
this . typingsStatus = this . _register ( new TypingsStatus ( this . client ) ) ;
100
100
this . _register ( LargeProjectStatus . create ( this . client ) ) ;
101
101
102
- this . fileConfigurationManager = this . _register ( new FileConfigurationManager ( this . client , onCaseInsenitiveFileSystem ) ) ;
102
+ this . fileConfigurationManager = this . _register ( new FileConfigurationManager ( this . client , onCaseInsensitiveFileSystem ) ) ;
103
103
104
104
for ( const description of descriptions ) {
105
105
const manager = new LanguageProvider ( this . client , description , this . commandManager , this . client . telemetryReporter , this . typingsStatus , this . fileConfigurationManager , onCompletionAccepted ) ;
0 commit comments