mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-22 15:40:07 -04:00
41 lines
998 B
JSON
41 lines
998 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,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"types": ["vite-plugin-svgr/client", "vite/client"],
|
|
"paths": {
|
|
"@sd/interface": ["../../packages/interface/src/index.ts"],
|
|
"@sd/ui": ["../../packages/ui/src/index.ts"],
|
|
"@sd/client": ["../../packages/client/src/index.ts"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
"include": [
|
|
"src",
|
|
"env.d.ts",
|
|
"src/vite-env.d.ts",
|
|
"src/components",
|
|
"src/pages",
|
|
"renderer",
|
|
"server"
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|