Skip to content

Commit 0ed8d0a

Browse files
committed
Update CHANGELOG
1 parent eeb3822 commit 0ed8d0a

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
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

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

tsconfig.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
}

0 commit comments

Comments
 (0)