* feat(client): endpoint type definitions * fix(client): endpoint generation * fix(demo): streaming page type * chore: update reference docs * chore: prepare client release * chore: update reference docs
28 lines
873 B
JSON
28 lines
873 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/client/endpoints": ["libs/client/src/types/endpoints.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/**"]
|
|
}
|