From 8c50172d7717e1988f639482396de73877ac5c42 Mon Sep 17 00:00:00 2001 From: Ben Guidarelli Date: Tue, 21 May 2024 12:48:52 -0400 Subject: [PATCH] restore root dir for solana ts --- solana/package.json | 2 +- solana/tsconfig.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/solana/package.json b/solana/package.json index 70a319e4..f9d5bac2 100644 --- a/solana/package.json +++ b/solana/package.json @@ -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", diff --git a/solana/tsconfig.json b/solana/tsconfig.json index 89bcc176..ef752d46 100644 --- a/solana/tsconfig.json +++ b/solana/tsconfig.json @@ -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"] }