File tree Expand file tree Collapse file tree 2 files changed +24
-5
lines changed Expand file tree Collapse file tree 2 files changed +24
-5
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ../tsconfig-build" ,
3
+ "files" : [
4
+ " public-api.ts" ,
5
+ " ../typings.d.ts"
6
+ ],
7
+ "angularCompilerOptions" : {
8
+ "annotateForClosureCompiler" : true ,
9
+ "strictMetadataEmit" : true ,
10
+ "flatModuleOutFile" : " index.js" ,
11
+ "flatModuleId" : " @angular/cdk/testing" ,
12
+ "skipTemplateCodegen" : true ,
13
+ "fullTemplateTypeCheck" : true
14
+ }
15
+ }
Original file line number Diff line number Diff line change 14
14
}
15
15
},
16
16
"files" : [
17
- " ./testing/index.ts" ,
18
17
" ./index.ts" ,
19
18
" typings.d.ts"
20
19
],
24
23
"emitDecoratorMetadata" : true ,
25
24
"fullTemplateTypeCheck" : true ,
26
25
27
- // Unset options inherited from tsconfig-build
26
+ // Unset options inherited from tsconfig-build.
28
27
"annotateForClosureCompiler" : false ,
29
28
"flatModuleOutFile" : null ,
30
29
"flatModuleId" : null
31
30
},
32
31
"include" : [
33
- // Include the index.ts for each secondary entry-point
32
+ // Include the index.ts for each secondary entry-point.
34
33
" ./*/index.ts" ,
34
+ // Include the "private/testing" internal entry-point.
35
+ " ./private/testing/" ,
36
+ // Include all spec files of the CDK.
35
37
" **/*.spec.ts"
36
38
],
37
39
"exclude" : [
38
40
" **/schematics/**/*.ts" ,
39
- // Exclude end-to-end tests and utilities
41
+ // Exclude end-to-end tests and utilities.
40
42
" **/*.e2e.spec.ts" ,
41
- " ./testing/e2e/**"
43
+ // Exclude internal e2e testing utilities. These are not needed by tests
44
+ // which execute through gulp.
45
+ " ./private/testing/e2e/**"
42
46
]
43
47
}
You can’t perform that action at this time.
0 commit comments