Skip to content

Commit eb79274

Browse files
committed
🔧 fix: exclude benchmark from build process
1 parent 3dbc26d commit eb79274

File tree

5 files changed

+6
-1
lines changed

5 files changed

+6
-1
lines changed

benchmarks/medium.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

benchmarks/multiple-queries.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

benchmarks/small.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

benchmarks/utils.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import type { TAnySchema } from '@sinclair/typebox';
2+
export declare const benchmark: <T extends TAnySchema>(model: T, value: T["static"]) => void;

tsconfig.dts.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,6 @@
101101
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
102102
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
103103
},
104-
"exclude": ["node_modules", "test", "example", "dist", "build.ts"]
104+
"exclude": ["node_modules", "test", "example", "dist", "build.ts", "benchmarks"]
105105
// "include": ["src/**/*"]
106106
}

0 commit comments

Comments
 (0)