spacedrive/packages/config/base.tsconfig.json
Oscar Beaumont 49bdbc4b60
SolidJS Build Infrastructure (#1919)
* backport changes from #1913

* Make ESLint play nice

* eslint fix

---------

Co-authored-by: Brendan Allan <brendonovich@outlook.com>
2024-01-08 06:20:20 +00:00

23 lines
578 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Default",
"compilerOptions": {
"strict": true,
"jsx": "preserve",
"esModuleInterop": true,
"skipLibCheck": true,
"preserveWatchOutput": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"noUncheckedIndexedAccess": true,
"composite": true,
"declaration": true,
"emitDeclarationOnly": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"module": "ESNext",
"target": "ESNext",
"types": ["vite-plugin-svgr/client", "vite/client"]
}
}