File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 36
36
"prepare" : " yarn clean && yarn build" ,
37
37
"pretest" : " yarn lint" ,
38
38
"test" : " jest" ,
39
- "type-tests" : " yarn tsc -p test/typetests" ,
39
+ "type-tests" : " yarn tsc -p test/typetests/tsconfig.json " ,
40
40
"coverage" : " codecov"
41
41
},
42
42
"peerDependencies" : {
Original file line number Diff line number Diff line change 1
1
{
2
- "extends" : " ../tsconfig.json" ,
3
2
"compilerOptions" : {
4
3
"allowSyntheticDefaultImports" : true ,
5
4
"esModuleInterop" : true ,
6
5
"module" : " esnext" ,
7
6
"moduleResolution" : " node" ,
8
7
"emitDeclarationOnly" : false ,
8
+ "declaration" : false ,
9
9
"strict" : true ,
10
10
"noEmit" : true ,
11
11
"target" : " es2018" ,
12
12
"jsx" : " react" ,
13
13
"baseUrl" : " ." ,
14
14
"skipLibCheck" : true ,
15
- "noImplicitReturns" : false
15
+ "noImplicitReturns" : false ,
16
+ "experimentalDecorators" : true ,
16
17
}
17
18
}
Original file line number Diff line number Diff line change 1
1
{
2
- "extends" : " ../tsconfig.test.json"
2
+ "extends" : " ../tsconfig.test.json" ,
3
+ "compilerOptions" : {
4
+ },
5
+ "include" : [" ./*.ts*" ],
6
+ "exclude" : []
3
7
}
You can’t perform that action at this time.
0 commit comments