Skip to content

Commit 373407e

Browse files
committed
node 24 upgrade | Bump dependencies, update config to support node 24
1 parent 4fba94f commit 373407e

6 files changed

Lines changed: 19715 additions & 23672 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
# production
1212
/build
13-
/build-ios/WebViewExample/local_html
1413
/dist
1514

1615
# misc

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14
1+
24

.svgrrc.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
module.exports = {
2+
jsxRuntime: 'classic',
3+
plugins: ['@svgr/plugin-jsx'],
4+
svgoConfig: {
5+
plugins: [
6+
{
7+
name: 'preset-default',
8+
params: {
9+
overrides: {
10+
removeViewBox: false,
11+
},
12+
},
13+
},
14+
],
15+
},
16+
jsx: {
17+
babelConfig: {
18+
plugins: [
19+
[
20+
'@babel/plugin-transform-react-jsx',
21+
{
22+
throwIfNamespace: false,
23+
useBuiltIns: true,
24+
},
25+
],
26+
],
27+
},
28+
},
29+
};

jsconfig.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": "src"
4+
},
5+
"include": ["src"]
6+
}

0 commit comments

Comments
 (0)