added src to tsconfig.json
Some checks failed
/ deploy (push) Failing after 1m5s

This commit is contained in:
lootboxer 2025-07-01 03:13:12 +03:00
parent 68f5aa29ab
commit febaa818f1
6 changed files with 14 additions and 7 deletions

View file

@ -1,10 +1,19 @@
{
"compilerOptions": {
"esModuleInterop": true,
"baseUrl": ".",
"skipLibCheck": true,
"paths": {
"@/*": ["./src/*"],
"@server/*": ["./server/src/*"]
},
"jsx": "react-jsx"
"include":["src"],
"references": [
{
"path": "src",
"prepend": true
}
]
}
}