File tree 4 files changed +26
-44
lines changed
4 files changed +26
-44
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
- "composite" : true
3
+ "rootDir" : " ./src" ,
4
+ "outDir" : " ./dist" ,
5
+ "baseUrl" : " ." ,
6
+ "downlevelIteration" : true ,
7
+ "module" : " ESNext" ,
8
+ "moduleResolution" : " node" ,
9
+ "strict" : true ,
10
+ "esModuleInterop" : true ,
11
+ "sourceMap" : true ,
12
+ "declaration" : true ,
13
+ "declarationMap" : true ,
14
+ "removeComments" : true ,
15
+ "noImplicitAny" : true ,
16
+ "noImplicitReturns" : true ,
17
+ "noImplicitOverride" : true ,
18
+ "noFallthroughCasesInSwitch" : true ,
19
+ "noUnusedParameters" : true ,
20
+ "noUnusedLocals" : true ,
21
+ "forceConsistentCasingInFileNames" : true ,
22
+ "importsNotUsedAsValues" : " error" ,
23
+
4
24
},
5
- "files" : [],
6
- "include" : [],
7
- "references" : [
8
- { "path" : " ./tsconfig.build.json" },
9
- { "path" : " ./tsconfig.test.json" },
10
- ]
11
- }
25
+ "include" : [" src/**/*" ],
26
+ "exclude" : [" **/__tests__" ]
27
+ }
Original file line number Diff line number Diff line change 1
1
{
2
- "extends" : " ./tsconfig.base. json" ,
2
+ "extends" : " ./tsconfig.json" ,
3
3
"include" : [" src/**/*" ],
4
4
"compilerOptions" : {
5
5
"noEmit" : true ,
6
6
"types" : [" node" , " jest" ]
7
7
}
8
- }
8
+ }
You can’t perform that action at this time.
0 commit comments