File tree Expand file tree Collapse file tree 3 files changed +29
-23
lines changed
Expand file tree Collapse file tree 3 files changed +29
-23
lines changed Original file line number Diff line number Diff line change 5050 " lib" ,
5151 " src" ,
5252 " dist" ,
53- " tsconfig.json" ,
53+ " tsconfig.base. json" ,
5454 " !**/*.test.ts"
5555 ],
5656 "scripts" : {
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://json.schemastore.org/tsconfig" ,
3+ "compilerOptions" : {
4+ "composite" : true ,
5+ "noEmit" : true ,
6+ "strict" : true ,
7+ "module" : " nodenext" ,
8+ "esModuleInterop" : true ,
9+ "target" : " es2021" ,
10+ "jsx" : " react-jsx" ,
11+ "sourceMap" : true ,
12+ "newLine" : " lf" ,
13+ "verbatimModuleSyntax" : true ,
14+ "allowUnreachableCode" : false ,
15+ "allowUnusedLabels" : false ,
16+ "exactOptionalPropertyTypes" : true ,
17+ "noFallthroughCasesInSwitch" : true ,
18+ "noImplicitOverride" : true ,
19+ "noImplicitReturns" : true ,
20+ "noPropertyAccessFromIndexSignature" : true ,
21+ "noUncheckedIndexedAccess" : true ,
22+ "noUnusedParameters" : true ,
23+ "noUnusedLocals" : true ,
24+ "forceConsistentCasingInFileNames" : true ,
25+ "baseUrl" : " ./"
26+ }
27+ }
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://json.schemastore.org/tsconfig" ,
3+ "extends" : " ./tsconfig.base.json" ,
34 "compilerOptions" : {
4- "composite" : true ,
5- "noEmit" : true ,
6- "strict" : true ,
7- "module" : " nodenext" ,
8- "esModuleInterop" : true ,
9- "target" : " es2021" ,
10- "jsx" : " react-jsx" ,
11- "sourceMap" : true ,
12- "newLine" : " lf" ,
13- "verbatimModuleSyntax" : true ,
14- "allowUnreachableCode" : false ,
15- "allowUnusedLabels" : false ,
16- "exactOptionalPropertyTypes" : true ,
17- "noFallthroughCasesInSwitch" : true ,
18- "noImplicitOverride" : true ,
19- "noImplicitReturns" : true ,
20- "noPropertyAccessFromIndexSignature" : true ,
21- "noUncheckedIndexedAccess" : true ,
22- "noUnusedParameters" : true ,
23- "noUnusedLocals" : true ,
24- "forceConsistentCasingInFileNames" : true ,
25- "baseUrl" : " ./" ,
265 "paths" : {
276 "@seamapi/smith" : [" ./src/index.ts" ],
287 "lib/*" : [" ./src/lib/*" ]
You can’t perform that action at this time.
0 commit comments