-
Notifications
You must be signed in to change notification settings - Fork 32
Typescript 6 #1168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Typescript 6 #1168
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
e30c9cc
build: new try pinning dependencies
hleepfl f5cf0b0
build: last missing version pins
hleepfl 274df12
build: replace npm with pnpm
hleepfl 249a35c
build: move sections from package.json, prettier ignore lockfile
hleepfl 462d20a
build: fix phantom dependencies and remove a few useless ones
hleepfl 2666eec
build: update ci to use pnpm
hleepfl efd52aa
build: update Dockerfile
hleepfl 3a5d357
build: update npm calls to pnpm
hleepfl 331965e
build: simplify building examples
hleepfl 3115891
build: fix e2e tests
hleepfl 651a0ae
build: don't build code in start command
hleepfl eff23f9
build: update args passing to pnpm (no -- separator)
hleepfl 8cdafa2
ci: sync lockfile
hleepfl df22553
docs: update docs to mention pnpm instead of npm
hleepfl be3a84a
docs: update tools installation guide
hleepfl 996c943
chore: formatting
hleepfl 6f605ec
build: integrate pr review comments
hleepfl 0af96d4
chore: sync lockfile
hleepfl ff0d419
build: add back required dependency
hleepfl 533a6df
chore: sync lockfile
hleepfl 78ca5bd
build: bump typescript to 6
hleepfl e23dab2
build: bump typescript-eslint
hleepfl 7f319bf
lint: don't ignore docs/examples
hleepfl 8193f80
lint: ignore buggy rule for `webapp`
hleepfl 47f76a7
chore: fix lint errors in discojs
hleepfl 438e8ae
Revert "build: add back required dependency"
hleepfl adcd8a2
build: re-add necessary dep
hleepfl d49ee3c
Merge branch 'develop' into 1116-typescript-6
hleepfl 8dc4a1e
chore: fix some eslint errors in a better way
hleepfl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,7 @@ | |
| ], | ||
| "compilerOptions": { | ||
| "lib": ["DOM"], | ||
| "rootDir": "./src", | ||
| "outDir": "dist" | ||
| }, | ||
| "include": ["src"], | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. better to inline the various now useless renaming variables |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,6 +20,7 @@ | |
| "skipLibCheck": true, | ||
|
|
||
| "outDir": "dist", | ||
| "rootDir": ".", | ||
| "types": ["node"] | ||
| }, | ||
| "include": ["*.ts"] | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,9 @@ | ||
| { | ||
| "extends": "../tsconfig.base.json", | ||
| "compilerOptions": { "outDir": "dist" }, | ||
| "compilerOptions": { | ||
| "rootDir": "./src", | ||
| "outDir": "dist", | ||
| "types": ["node"] | ||
| }, | ||
| "include": ["src"] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the casting was to make it obvious what we were writing.