-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
pr05 Typescript #1: Set up TS dependencies #3533
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
raclim
merged 29 commits into
processing:develop
from
clairep94:claire/pr05/set_up_ts_dependencies
Jul 21, 2025
Merged
Changes from 28 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
7de0f7a
install typescript 5.8.3
clairep94 7420fd1
install compatible react types for react 16.14
clairep94 82973eb
install babel preset-typescript
clairep94 a105e23
move typescript from deps to dev deps
clairep94 85d94d6
install node types for node 16
clairep94 088a38e
set up babel rc
clairep94 cfcd17b
webpack setup
clairep94 c44ab95
test lint-staged add ts tsx
clairep94 e7bf1fb
jest typescript dep
clairep94 8ebec3a
storybook update included stories
clairep94 012fefe
set up eslint deps and eslintrc
clairep94 a5cdbec
update es lint commands manually tested
clairep94 fa92de3
add ts config for client with ts check
clairep94 14aa861
add correct eslint version
clairep94 5c88395
update resolve on config.examples
clairep94 8c2baeb
add precommit check
clairep94 198622b
move typecheck to pre-push
clairep94 116de80
remove pre-commit typecheck, need to discuss
clairep94 2cb394a
fix typo on webpack config example
clairep94 760cf05
Merge branch 'develop' into claire/pr05/set_up_ts_dependencies
clairep94 9330d34
Merge branch 'develop' into claire/pr05/set_up_ts_dependencies
clairep94 3eed8b8
add ts config settings suggested by typescript docs for babel & tsc c…
clairep94 0ff68ea
add base tsconfig and update client to extend from base
clairep94 53ad7a1
test moving typecheck to only lint-staged files, should pass as forma…
clairep94 67f99ac
update lint-staged command order
clairep94 d9c7252
remove build info
clairep94 69410ad
add *.tsbuildinfo to git ignore
clairep94 963b59a
fix, can't use staging files only while specifying a tscoonfig project
clairep94 1ecafb3
fix typo
clairep94 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
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 |
---|---|---|
|
@@ -21,4 +21,6 @@ terraform/.terraform/ | |
storybook-static | ||
duplicates.json | ||
|
||
coverage | ||
coverage | ||
|
||
*.tsbuildinfo |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "../tsconfig.base.json", | ||
"compilerOptions": { | ||
"target": "ES6", | ||
"module": "ESNext", | ||
"lib": ["DOM", "ESNext"], | ||
"jsx": "react", | ||
}, | ||
} |
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.
should this be mdx?