File tree 2 files changed +11
-9
lines changed
2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -423,7 +423,7 @@ export const buildFilter = (ruleList: Rule[]): Filter => {
423
423
// independent of the passed element. We use this list to optimize
424
424
// applying each operator (i.e., we just check the first element, and then
425
425
// accept or reject all elements in the consideration set accordingly).
426
- const fastPathOperatorTypes = [
426
+ const fastPathOperatorTypes : OperatorType [ ] = [
427
427
'matches-media' ,
428
428
'matches-path' ,
429
429
]
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " @tsconfig/node20/tsconfig.json" ,
3
3
"compilerOptions" : {
4
- "target" : " es2020" ,
5
- "outDir" : " ./out" ,
6
4
"declaration" : true ,
7
5
"declarationDir" : " ./types" ,
8
- "esModuleInterop " : true ,
6
+ "forceConsistentCasingInFileNames " : true ,
9
7
"lib" : [
10
8
" es2016" ,
11
9
" dom"
12
- ]
10
+ ],
11
+ "module" : " esnext" ,
12
+ "moduleResolution" : " node" ,
13
+ "noImplicitAny" : true ,
14
+ "noImplicitReturns" : true ,
15
+ "outDir" : " ./out" ,
16
+ "strictNullChecks" : true ,
17
+ "target" : " es2019"
13
18
},
14
19
"include" : [
15
20
" ./src/**/*.ts"
16
- ],
17
- "forceConsistentCasingInFileNames" : true ,
18
- "noImplicitReturns" : true ,
19
- "strictNullChecks" : true
21
+ ]
20
22
}
You can’t perform that action at this time.
0 commit comments