aboutsummaryrefslogtreecommitdiffstats
path: root/tools/compare-models/tsconfig.json
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-12-26 11:14:17 +0000
committerMohamed Bassem <me@mbassem.com>2025-12-26 11:14:17 +0000
commit1dfa5d12f6af6ca964bdfa911809a061ffdf36c2 (patch)
tree87c734eaa5395051a0a46972ca575f2866c73dd5 /tools/compare-models/tsconfig.json
parentecb7a710ca7ec22aa3304b8d1f6b603bb60874bc (diff)
downloadkarakeep-1dfa5d12f6af6ca964bdfa911809a061ffdf36c2.tar.zst
chore: add a tool for comparing perf of different models
Diffstat (limited to '')
-rw-r--r--tools/compare-models/tsconfig.json24
1 files changed, 24 insertions, 0 deletions
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"]
+}