mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-02-20 15:43:58 -05:00
* Handle large text files * wip * nit * Fix syntax highlighting * Requiring an API call for my dev builds, no shot * backend for line counting + wip frontend * 600 lines is too much for this file, ngl * wip: `LimitedByLinesBody` & some more restructuring * Virtualised list for QuickPreview * yeet bad ideas * general cleanup + hack to fix broken toml * fix --------- Co-authored-by: Utku <74243531+utkubakir@users.noreply.github.com>
21 lines
352 B
JSON
21 lines
352 B
JSON
{
|
|
"extends": "../packages/config/base.tsconfig.json",
|
|
"compilerOptions": {
|
|
"declarationDir": "dist",
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
},
|
|
"types": ["vite-plugin-svgr/client", "vite/client", "node"]
|
|
},
|
|
"include": ["./**/*"],
|
|
"exclude": ["dist"],
|
|
"references": [
|
|
{
|
|
"path": "../packages/ui"
|
|
},
|
|
{
|
|
"path": "../packages/client"
|
|
}
|
|
]
|
|
}
|