From 1dfa5d12f6af6ca964bdfa911809a061ffdf36c2 Mon Sep 17 00:00:00 2001 From: Mohamed Bassem Date: Fri, 26 Dec 2025 11:14:17 +0000 Subject: chore: add a tool for comparing perf of different models --- tools/compare-models/tsconfig.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tools/compare-models/tsconfig.json (limited to 'tools/compare-models/tsconfig.json') diff --git a/tools/compare-models/tsconfig.json b/tools/compare-models/tsconfig.json new file mode 100644 index 00000000..edeec809 --- /dev/null +++ b/tools/compare-models/tsconfig.json @@ -0,0 +1,24 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "extends": "@tsconfig/node22/tsconfig.json", + "compilerOptions": { + "target": "ES2022", + "module": "CommonJS", + "lib": ["ES2022"], + "outDir": "dist", + "rootDir": "src", + "moduleResolution": "node", + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "skipLibCheck": true, + "allowJs": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": false, + "declaration": false, + "sourceMap": false + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +} -- cgit v1.2.3-70-g09d2