test(core): avoid duplicate compiled test runs
This commit is contained in:
@@ -59,7 +59,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc --build",
|
"build": "tsc --build",
|
||||||
"dev": "tsgo --build --watch",
|
"dev": "tsgo --build --watch",
|
||||||
"test": "bun test",
|
"test": "bun test src",
|
||||||
"bench:registry": "bun run src/registry/__bench__/relations-resolver.bench.ts",
|
"bench:registry": "bun run src/registry/__bench__/relations-resolver.bench.ts",
|
||||||
"prepublishOnly": "npm run build"
|
"prepublishOnly": "npm run build"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,5 +9,5 @@
|
|||||||
"types": ["bun"]
|
"types": ["bun"]
|
||||||
},
|
},
|
||||||
"include": ["src"],
|
"include": ["src"],
|
||||||
"exclude": ["node_modules", "dist"]
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.test.tsx"]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user