Files
TX/artifacts/tx-os/tsconfig.json
T
Riyadh aa462f9f52 Rename project and remove unused services
Update project name from teaboy-os to tx-os and remove obsolete services.
2026-04-22 10:52:09 +00:00

26 lines
578 B
JSON

{
"extends": "../../tsconfig.base.json",
"include": ["src/**/*"],
"exclude": ["node_modules", "build", "dist", "**/*.test.ts"],
"compilerOptions": {
"noEmit": true,
"jsx": "preserve",
"lib": ["esnext", "dom", "dom.iterable"],
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"moduleResolution": "bundler",
"types": ["node", "vite/client"],
"paths": {
"@/*": ["./src/*"]
}
},
"references": [
{
"path": "../../lib/api-client-react"
},
{
"path": "../../lib/object-storage-web"
}
]
}