Skip to content

Commit

Permalink
chore: add relayer package
Browse files Browse the repository at this point in the history
  • Loading branch information
ducphamle2 committed Jun 6, 2024
1 parent ed01b70 commit 8dcb6c0
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/relayer/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "@oraichain/tonbridge-relayer",
"version": "1.0.0",
"main": "build/index.js",
"files": [
"build/",
"@types"
],
"scripts": {
"build": "tsc -p tsconfig.json"
},
"license": "MIT"
}
Empty file added packages/relayer/src/index.ts
Empty file.
16 changes: 16 additions & 0 deletions packages/relayer/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "build",
"declaration": true,
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"@types/**/*.ts"
],
"exclude": [
"node_modules/"
]
}

0 comments on commit 8dcb6c0

Please sign in to comment.