Files
bot/packages/embeds/js/tsconfig.json

35 lines
497 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig/base.json",
"include": [
"src/**/*"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
},
"jsx": "preserve",
"jsxImportSource": "solid-js",
"outDir": "dist"
},
"references": [
{
"path": "../../bot-engine"
},
{
"path": "../../env"
},
{
"path": "../../lib"
},
{
"path": "../../schemas"
},
{
"path": "../../theme"
}
]
}