CL-1977: Updating react-javascript

This commit is contained in:
Romain Francois 2024-07-31 15:26:16 +01:00
parent 296a8afac5
commit 102ff5b02f
4 changed files with 6109 additions and 16362 deletions

View File

@ -1,6 +1,6 @@
# TradingView Charting Library and React Integration Example (JavaScript)
The earliest supported version of the charting library for these examples is `v23.043`.
The latest supported version of the charting library for these examples is `v28.0.0`.
## How to start

File diff suppressed because it is too large Load Diff

View File

@ -2,9 +2,9 @@
"name": "charting-library-react-js-example",
"private": true,
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1"
"react": "18.3.1",
"react-dom": "18.3.1",
"react-scripts": "^5.0.1"
},
"scripts": {
"start": "react-scripts start",

View File

@ -0,0 +1,26 @@
{
"compilerOptions": {
"src": "./public",
"outDir": "build/dist",
"module": "esnext",
"target": "es5",
"lib": ["es6", "dom"],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": true
},
"exclude": [
"node_modules",
"build",
"public",
"src/charting_library"
]
}