fal-js/tsconfig.base.json
Daniel Rochetti ecded55c2f
feat(client): endpoint type definitions (#102)
* 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
2024-11-13 00:16:08 -08:00

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/**"]
}