Skip to content

Commit

Permalink
tsdk: add more config in template's tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
suhaotian committed Jan 20, 2024
1 parent 7530539 commit c415a00
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

This is the log of notable changes to the `tsdk` that are developer-facing.

### 0.1.2 Not Released Yet
### 0.1.2 2024/01/20

- Chore: add `incremental: true` in fe-sdk template's tsconfig.json
- Chore: add `resolveJsonModule: true` in fe-sdk template's tsconfig.json

### 0.1.1 2024/01/05

Expand Down
2 changes: 1 addition & 1 deletion packages/tsdk-server-adapters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tsdk-server-adapters",
"version": "0.1.1",
"version": "0.1.2",
"main": "lib/index.js",
"repository": "tsdk-monorepo/tsdk",
"bugs": "https://github.com/tsdk-monorepo/tsdk/issues",
Expand Down
3 changes: 2 additions & 1 deletion packages/tsdk/fe-sdk-template/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"target": "ES5",
"outDir": "lib",
"incremental": true,
"skipLibCheck": true
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["./src"]
}
2 changes: 1 addition & 1 deletion packages/tsdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tsdk",
"version": "0.1.1",
"version": "0.1.2",
"description": "Type-safe API development and code share tool for TypeScript projects.",
"repository": "tsdk-monorepo/tsdk",
"bugs": "https://github.com/tsdk-monorepo/tsdk/issues",
Expand Down

0 comments on commit c415a00

Please sign in to comment.