2
0
Files
bot/packages/embeds/js/tsconfig.json
2024-08-22 17:40:10 +02:00

21 lines
443 B
JSON

{
"extends": "@typebot.io/tsconfig/base.json",
"include": ["src/**/*"],
"exclude": ["dist", "node_modules"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"jsx": "preserve",
"jsxImportSource": "solid-js",
"module": "ESNext",
"target": "ESNext",
"declaration": true,
"declarationMap": true,
"outDir": "dist",
"noEmit": false,
"emitDeclarationOnly": true
}
}