mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-10 02:26:21 -04:00
27 lines
652 B
JSON
27 lines
652 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": false,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@sd/ui": ["../ui/src/index.ts"],
|
|
"@sd/client": ["../client/src/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src", "scripts"]
|
|
}
|