Skip to content

Commit

Permalink
restore root dir for solana ts
Browse files Browse the repository at this point in the history
  • Loading branch information
barnjamin committed May 21, 2024
1 parent 0e3c66a commit 8c50172
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion solana/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"build:esm":"npx tsc -p tsconfig.esm.json",
"build:cjs":"npx tsc -p tsconfig.cjs.json",
"build":"npm run build:esm && npm run build:cjs",
"clean":"rm -rf dist && rm -rf node_modules"
"clean":"rm -rf dist && rm ./*.tsbuildinfo && rm -rf node_modules"
},
"dependencies": {
"@certusone/wormhole-spydk": "^0.0.1",
Expand Down
4 changes: 2 additions & 2 deletions solana/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"rootDir": "ts",
"rootDir": "ts/src",
"resolveJsonModule": true,
"esModuleInterop": true,
"module": "ESNext",
"moduleResolution": "Bundler"
},
"include": ["ts/src", "ts/src/**/*.json"]
"include": ["ts/src/**/*.ts", "ts/src/**/*.json"]
}

0 comments on commit 8c50172

Please sign in to comment.