-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove yarn.lock * Add missing canvas-confetti dependency * Run `lint:fix` to automatically fix formatting Caleydo/cohort#693 * Fix remaining eslint errors * Remove `|| true` to show eslint errors Caleydo/cohort#693 * Rename `App` to `Coral` Caleydo/cohort#693 * Remove content of index.ts * Use dependent branch * React 18 * Use react18 branches * Also for ordino * Use correct dependent branch * tsconfig * Test tsconfig * Revert tsconfig * Pin deps * Update package.json --------- Co-authored-by: Holger Stitz <[email protected]> Co-authored-by: Michael Pühringer <[email protected]>
- Loading branch information
1 parent
5bafd45
commit dbaac5e
Showing
6 changed files
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -60,9 +60,13 @@ | |
"react-router-dom": "^5.2.0", | ||
"visyn_scripts": "git+ssh://[email protected]/datavisyn/visyn_scripts.git#develop" | ||
}, | ||
"resolutions": { | ||
"@types/react": "~18.2.0", | ||
"@types/react-dom": "~18.2.0", | ||
"react": "~18.2.0", | ||
"react-dom": "~18.2.0" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "^16.14.6", | ||
"@types/react-dom": "^16.9.5", | ||
"@types/react-router-dom": "^5.1.7", | ||
"mkdirp": "0.5.1", | ||
"tslint": "~5.20.1", | ||
|
This file contains 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 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 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 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 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,12 +1,10 @@ | ||
{ | ||
"extends": "visyn_scripts/config/tsconfig.template.json", | ||
{ "extends": "visyn_scripts/config/tsconfig.template.json", | ||
"compilerOptions": { | ||
"outDir": "./dist", | ||
"moduleResolution": "node", | ||
}, | ||
"include": [ | ||
"src/**/*.ts", | ||
"src/**/*.tsx", | ||
"tsd.d.ts" | ||
] | ||
} | ||
} |