Skip to content

Commit

Permalink
Actually downgrade TypeScript (#902)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasIO authored Nov 28, 2024
1 parent 934129e commit 2292c95
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 14 deletions.
5 changes: 5 additions & 0 deletions .changeset/few-bananas-approve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@livekit/protocol": patch
---

Actually downgrade TypeScript
2 changes: 1 addition & 1 deletion packages/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@bufbuild/protoc-gen-es": "^1.10.0",
"genversion": "^3.2.0",
"tsup": "^8.3.5",
"typescript": "^5.2"
"typescript": "5.2"
},
"dependencies": {
"@bufbuild/protobuf": "^1.10.0"
Expand Down
11 changes: 6 additions & 5 deletions packages/javascript/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"compilerOptions": {
"target": "es2015",
"module": "es2015",
"moduleResolution": "node",
"lib": ["ES2020"],
"target": "ES2020",
"module": "Node16",
"moduleResolution": "node16",
"declaration": true,
"declarationMap": true,
"skipLibCheck": true,
"sourceMap": true,
"outDir": "dist",
"outDir": "dist"
},
"include": ["src/**/*.ts"],
"include": ["src/**/*.ts"]
}
16 changes: 8 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2292c95

Please sign in to comment.