diff --git a/packages/core/package.json b/packages/core/package.json index a2ef83d2..ada4f58b 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -59,7 +59,7 @@ "scripts": { "build": "tsc --build", "dev": "tsgo --build --watch", - "test": "bun test", + "test": "bun test src", "bench:registry": "bun run src/registry/__bench__/relations-resolver.bench.ts", "prepublishOnly": "npm run build" }, diff --git a/packages/core/tsconfig.json b/packages/core/tsconfig.json index 98b1f97c..bf55849b 100644 --- a/packages/core/tsconfig.json +++ b/packages/core/tsconfig.json @@ -9,5 +9,5 @@ "types": ["bun"] }, "include": ["src"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.test.tsx"] }