ad14983e21
* Added stripInternal to SDK tsconfig * Statuses can now be set from a run, and are stored in the database * Added the key to the returned status * Made the test job have an extra step and only pass in some of the options * client.getRunStatuses() and the corresponding endpoint * client.getRun() now includes status info * Fixed circular dependency schema * Translate null to undefined * Added the react package to the nextjs-reference tsconfig * Removed unused OpenAI integration from nextjs-reference project * New hooks for getting the statuses * Disabled most of the nextjs-reference jobs * Updated the hooks UI * Updated the endpoints to deal with null statuses values * The hook is working, with an example * Changeset: “You can create statuses in your Jobs that can then be read using React hooks” * Changeset config is back to the old changelog style * WIP on new React hooks guide * Guide docs for the new hooks * Added the status hooks to the React hooks guide * Removed the links to the status hooks reference for now * Re-ordered the hooks * Fix for an error in the docs * Set a default of a blank array for the GetRunSchema
16 lines
379 B
JSON
16 lines
379 B
JSON
{
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx", "tsup.config.ts"],
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"lib": ["es2015", "dom"],
|
|
"paths": {
|
|
"@trigger.dev/core": ["../core/src/index"],
|
|
"@trigger.dev/core/*": ["../core/src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|