Skip to content

Commit

Permalink
chore: test using node16 moduleresolution
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiendan committed Dec 29, 2023
1 parent 6e40edf commit c82721c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@topos-protocol/topos-smart-contracts",
"version": "3.1.0-rc1",
"version": "3.1.0-rc2",
"description": "Topos Smart Contracts",
"repository": {
"type": "git",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"module": "node16",
"moduleResolution": "node16",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["./scripts", "./test"],
"include": ["./scripts", "./test", "./typechain-types"],
"files": ["./hardhat.config.ts"]
}

0 comments on commit c82721c

Please sign in to comment.