2
0

Add audio clips option on text input block

Closes #157
This commit is contained in:
Baptiste Arnaud
2024-08-20 14:35:20 +02:00
parent 984c2bf387
commit 135251d3f7
55 changed files with 1535 additions and 366 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@typebot.io/nextjs",
"version": "0.3.8",
"version": "0.3.9",
"description": "Convenient library to display typebots on your Next.js website",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@@ -16,6 +16,7 @@ const indexConfig = {
output: {
dir: './dist',
format: 'es',
sourcemap: true,
},
external: ['next/dynamic.js', 'react', 'react/jsx-runtime'],
watch: {

View File

@@ -10,6 +10,8 @@
"declaration": true,
"declarationMap": true,
"noEmit": false,
"emitDeclarationOnly": true
"emitDeclarationOnly": true,
"noEmitOnError": true,
"sourceMap": true
}
}