mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-05 15:16:20 -05:00
28 lines
695 B
JSON
28 lines
695 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"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"],
|
|
"@sd/core": ["../../core/index.ts"],
|
|
}
|
|
},
|
|
"include": ["src", "scripts"]
|
|
}
|