fix: cannot build prod

This commit is contained in:
2026-07-08 18:25:36 +02:00
parent 92b5fd92bc
commit 73dd672fdb
2 changed files with 14 additions and 5 deletions
+12 -3
View File
@@ -1,7 +1,16 @@
{
"extends": "./tsconfig.base.json",
"include": ["src/**/*.ts"],
"compilerOptions": {
"noEmit": true
}
"composite": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"outDir": "./dist/refs",
"module": "CommonJS",
"moduleResolution": "Node",
"strict": true,
"skipLibCheck": true,
"ignoreDeprecations": "6.0"
},
"include": ["src/**/*.ts"]
}