Skip to content

Commit

Permalink
(build) Fixed build config files for core, react-useDapp, vue-useDapp
Browse files Browse the repository at this point in the history
  • Loading branch information
VladyslavKhymenkoDevPro committed Oct 27, 2023
1 parent 1d55c47 commit cebd44a
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
3 changes: 1 addition & 2 deletions packages/@erc-3643/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"DeFi"
],
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "jest",
"build": "tsc"
Expand Down Expand Up @@ -38,4 +37,4 @@
"ts-node": "^10.9.1"
},
"gitHead": "ed0e5e9156c8d33654515bd53f0336102fe1ea84"
}
}
3 changes: 1 addition & 2 deletions packages/@erc-3643/core/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es5",
"target": "esnext",
"lib": [
"esnext",
"DOM"
Expand All @@ -9,7 +9,6 @@
"reflect-metadata",
"jest"
],
"module": "commonjs",
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/@erc-3643/react-useDapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
"react": "^18.2.0"
},
"gitHead": "ed0e5e9156c8d33654515bd53f0336102fe1ea84"
}
}
11 changes: 8 additions & 3 deletions packages/@erc-3643/react-useDapp/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"compilerOptions": {
"target": "ES2018",
"lib": ["es2022"],
"module": "commonjs",
"target": "esnext",
"lib": [
"esnext",
"DOM"
],
"types": [
"reflect-metadata"
],
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
Expand Down
11 changes: 8 additions & 3 deletions packages/@erc-3643/vue-useDapp/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"compilerOptions": {
"target": "ES2018",
"lib": ["es2022"],
"module": "commonjs",
"target": "esnext",
"lib": [
"esnext",
"DOM"
],
"types": [
"reflect-metadata"
],
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
Expand Down

0 comments on commit cebd44a

Please sign in to comment.