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

29 lines
405 B
JSON
Raw Normal View History

2023-07-15 12:26:12 +02:00
{
"extends": "../../tsconfig/react.json",
2023-07-15 12:26:12 +02:00
"include": ["src/**/*"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"outDir": "dist"
},
"references": [
{
"path": "../../lib"
},
{
"path": "../../prisma"
},
{
"path": "../../schemas"
},
{
"path": "../js"
},
{
"path": "../react"
}
]
2023-07-15 12:26:12 +02:00
}