File tree Expand file tree Collapse file tree 3 files changed +36
-1
lines changed
Expand file tree Collapse file tree 3 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 1212
1313### Pending Fixed
1414
15+ ### v1.2.1 - 2026-02-03
16+
17+ - :rocket : Include TSConfig
18+
1519### v1.2.0 - 2026-02-03
1620
1721- :tada : Introduce a CLI
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export class MBTilesOffline extends EventEmitter {
5858
5959 }
6060
61- async start ( ) : Promise < MBTilesOffline > {
61+ async start ( ) : Promise < void > {
6262 const db = new DatabaseSync ( this . output ) ;
6363
6464 let total = 0 ;
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "strict" : true ,
4+ "strictNullChecks" : true ,
5+ "declaration" : true ,
6+ "module" : " es2022" ,
7+ "esModuleInterop" : true ,
8+ "target" : " es2022" ,
9+ "lib" : [" es2022" , " dom" ],
10+ "skipLibCheck" : true ,
11+ "noImplicitAny" : true ,
12+ "moduleResolution" : " node" ,
13+ "resolveJsonModule" : true ,
14+ "verbatimModuleSyntax" : true ,
15+ "sourceMap" : true ,
16+ "outDir" : " dist" ,
17+ "baseUrl" : " ." ,
18+ "paths" : {
19+ "*" : [
20+ " node_modules/*"
21+ ]
22+ }
23+ },
24+ "include" : [
25+ " index.ts" ,
26+ " test/**/*" ,
27+ " lib/*.ts" ,
28+ " lib/xml/*.ts" ,
29+ " lib/schema.json"
30+ ]
31+ }
You can’t perform that action at this time.
0 commit comments