* chore(client): rename function module * chore: allow client to be created multiple times singleton client is not the default but it still present as a compatibility layer * chore: update docs * feat(client): improved result typing * chore: update demo app code * chore: updated reference docs * chore: update proxy code * chore: alpha release * chore: fix lint staged rule * chore: clean-up docs * chore: reference docs updated
27 lines
799 B
JSON
27 lines
799 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"target": "es2015",
|
|
"module": "esnext",
|
|
"lib": ["es2017", "dom"],
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@fal-ai/client": ["libs/client/src/index.ts"],
|
|
"@fal-ai/create-app": ["libs/create-app/src/index.ts"],
|
|
"@fal-ai/server-proxy": ["libs/proxy/src/index.ts"],
|
|
"@fal-ai/server-proxy/express": ["libs/proxy/src/express.ts"],
|
|
"@fal-ai/server-proxy/nextjs": ["libs/proxy/src/nextjs.ts"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules/**", "tmp/**", "dist/**"]
|
|
}
|