mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
76bd603507
feat: web register e2e
24 lines
575 B
JSON
24 lines
575 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"target": "es2022",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"rootDirs": ["src"],
|
|
"baseUrl": "./",
|
|
"types": ["vitest/globals"]
|
|
},
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|