2
0
Files
bot/packages/embeds/js/tsconfig.json
2023-03-15 08:35:16 +01:00

20 lines
422 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",
"emitDeclarationOnly": true
}
}