mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 09:59:00 -07:00
26 lines
642 B
JSON
26 lines
642 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "node16",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"target": "es2022",
|
|
"moduleResolution": "node16",
|
|
"lib": ["dom", "es2023"],
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"preserveWatchOutput": true,
|
|
"baseUrl": "./",
|
|
"jsx": "react",
|
|
"types": ["vitest/globals"]
|
|
},
|
|
"exclude": ["dist", "node_modules", "upload"]
|
|
}
|