mirror of
https://github.com/immich-app/immich.git
synced 2026-03-12 04:41:06 -04:00
27 lines
638 B
JSON
27 lines
638 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "nodenext",
|
|
"target": "esnext",
|
|
"strict": true,
|
|
"removeComments": true,
|
|
"lib": ["esnext"],
|
|
"outDir": "./dist",
|
|
"types": ["node", "@extism/js-pdk"],
|
|
"sourceMap": false,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"src/*": ["./src/*"]
|
|
},
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"moduleDetection": "force",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true
|
|
}
|
|
}
|