This repository was archived by the owner on Jan 13, 2025. It is now read-only.
File tree 3 files changed +35
-27
lines changed
3 files changed +35
-27
lines changed Original file line number Diff line number Diff line change @@ -142,6 +142,9 @@ const jasmineConfig = {
142
142
} ,
143
143
} ,
144
144
} ,
145
+ exclude : [
146
+ 'scripts/**/*.ts' ,
147
+ ] ,
145
148
reports : {
146
149
html : 'coverage' ,
147
150
lcovonly : 'coverage' ,
@@ -150,7 +153,7 @@ const jasmineConfig = {
150
153
filename : 'coverage.json' ,
151
154
} ,
152
155
} ,
153
- tsconfig : './tsconfig.json' ,
156
+ tsconfig : './tsconfig-base .json' ,
154
157
} ,
155
158
preprocessors : FILES_TO_USE . reduce ( ( obj , file ) => {
156
159
obj [ file ] = 'karma-typescript' ;
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "declaration" : true ,
4
+ "downlevelIteration" : true ,
5
+ "emitDecoratorMetadata" : true ,
6
+ "esModuleInterop" : true ,
7
+ "experimentalDecorators" : true ,
8
+ "lib" : [" es5" , " es6" , " dom" ],
9
+ "moduleResolution" : " node" ,
10
+ "newLine" : " lf" ,
11
+ "noEmitOnError" : false ,
12
+ "noErrorTruncation" : true ,
13
+ "noFallthroughCasesInSwitch" : true ,
14
+ "noStrictGenericChecks" : true ,
15
+ "noUnusedLocals" : true ,
16
+ "noUnusedParameters" : true ,
17
+ "preserveConstEnums" : true ,
18
+ "pretty" : true ,
19
+ "skipLibCheck" : true ,
20
+ "sourceMap" : true ,
21
+ "strict" : true ,
22
+ "stripInternal" : true ,
23
+ "target" : " es5" ,
24
+ "types" : []
25
+ }
26
+ }
Original file line number Diff line number Diff line change 1
1
{
2
- "compilerOptions" : {
3
- "declaration" : true ,
4
- "downlevelIteration" : true ,
5
- "emitDecoratorMetadata" : true ,
6
- "esModuleInterop" : true ,
7
- "experimentalDecorators" : true ,
8
- "lib" : [" es5" , " es6" , " dom" ],
9
- "moduleResolution" : " node" ,
10
- "newLine" : " lf" ,
11
- "noEmitOnError" : false ,
12
- "noErrorTruncation" : true ,
13
- "noFallthroughCasesInSwitch" : true ,
14
- "noStrictGenericChecks" : true ,
15
- "noUnusedLocals" : true ,
16
- "noUnusedParameters" : true ,
17
- "preserveConstEnums" : true ,
18
- "pretty" : true ,
19
- "skipLibCheck" : true ,
20
- "sourceMap" : true ,
21
- "strict" : true ,
22
- "stripInternal" : true ,
23
- "target" : " es5" ,
24
- "types" : []
25
- },
26
2
"exclude" : [
27
- " scripts/**/*.ts"
28
- ]
3
+ " packages/**/test/*.ts" ,
4
+ " scripts/**/*.ts" ,
5
+ " testing/**/*.ts"
6
+ ],
7
+ "extends" : " ./tsconfig-base.json"
29
8
}
You can’t perform that action at this time.
0 commit comments