jina-ai: billing for saas service (#55)

* wip: jina billing

* wip

* fix: build issues

* ci: cd gh action

* fix: make ci happy
This commit is contained in:
Yanlong Wang
2025-02-11 18:27:15 +08:00
committed by GitHub
parent c4639a2e92
commit 8af35c6640
26 changed files with 6150 additions and 647 deletions

View File

@@ -1,14 +1,18 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"module": "node16",
"outDir": "./dist",
"rootDir": "./src",
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"resolveJsonModule": true,
"moduleResolution": "node"
}
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["jina-ai/**/*", "**/__tests__/**/*"],
}