@@ -29,6 +29,14 @@ import {getTargetAtPosition, TargetContext, TargetNodeKind} from './template_tar
29
29
import { findTightestNode , getClassDeclFromDecoratorProp , getPropertyAssignmentFromValue } from './ts_utils' ;
30
30
import { getTemplateInfoAtPosition , isTypeScriptFile } from './utils' ;
31
31
32
+ interface LanguageServiceConfig {
33
+ /**
34
+ * If true, enable `strictTemplates` in Angular compiler options regardless
35
+ * of its value in tsconfig.json.
36
+ */
37
+ forceStrictTemplates ?: true ;
38
+ }
39
+
32
40
export class LanguageService {
33
41
private options : CompilerOptions ;
34
42
readonly compilerFactory : CompilerFactory ;
@@ -37,9 +45,12 @@ export class LanguageService {
37
45
private readonly parseConfigHost : LSParseConfigHost ;
38
46
39
47
constructor (
40
- private readonly project : ts . server . Project , private readonly tsLS : ts . LanguageService ) {
48
+ private readonly project : ts . server . Project ,
49
+ private readonly tsLS : ts . LanguageService ,
50
+ private readonly config : LanguageServiceConfig ,
51
+ ) {
41
52
this . parseConfigHost = new LSParseConfigHost ( project . projectService . host ) ;
42
- this . options = parseNgCompilerOptions ( project , this . parseConfigHost ) ;
53
+ this . options = parseNgCompilerOptions ( project , this . parseConfigHost , config ) ;
43
54
logCompilerOptions ( project , this . options ) ;
44
55
this . strategy = createTypeCheckingProgramStrategy ( project ) ;
45
56
this . adapter = new LanguageServiceAdapter ( project ) ;
@@ -340,7 +351,7 @@ export class LanguageService {
340
351
project . getConfigFilePath ( ) , ( fileName : string , eventKind : ts . FileWatcherEventKind ) => {
341
352
project . log ( `Config file changed: ${ fileName } ` ) ;
342
353
if ( eventKind === ts . FileWatcherEventKind . Changed ) {
343
- this . options = parseNgCompilerOptions ( project , this . parseConfigHost ) ;
354
+ this . options = parseNgCompilerOptions ( project , this . parseConfigHost , this . config ) ;
344
355
logCompilerOptions ( project , this . options ) ;
345
356
}
346
357
} ) ;
@@ -354,7 +365,8 @@ function logCompilerOptions(project: ts.server.Project, options: CompilerOptions
354
365
}
355
366
356
367
function parseNgCompilerOptions (
357
- project : ts . server . Project , host : ConfigurationHost ) : CompilerOptions {
368
+ project : ts . server . Project , host : ConfigurationHost ,
369
+ config : LanguageServiceConfig ) : CompilerOptions {
358
370
if ( ! ( project instanceof ts . server . ConfiguredProject ) ) {
359
371
return { } ;
360
372
}
@@ -375,6 +387,12 @@ function parseNgCompilerOptions(
375
387
// and only the real component declaration is used.
376
388
options . compileNonExportedClasses = false ;
377
389
390
+ // If `forceStrictTemplates` is true, always enable `strictTemplates`
391
+ // regardless of its value in tsconfig.json.
392
+ if ( config . forceStrictTemplates === true ) {
393
+ options . strictTemplates = true ;
394
+ }
395
+
378
396
return options ;
379
397
}
380
398
0 commit comments