mirror of
https://github.com/immich-app/immich.git
synced 2026-05-20 23:02:32 -04:00
3d075f2bf8
feat: plugins chore: better types feat: plugins
27 lines
641 B
JSON
27 lines
641 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"esModuleInterop": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"isolatedModules": true,
|
|
"lib": ["esnext"],
|
|
"module": "nodenext",
|
|
"moduleDetection": "force",
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"outDir": "./dist",
|
|
"paths": {
|
|
"src/*": ["./src/*"]
|
|
},
|
|
"removeComments": true,
|
|
"rootDir": "./src",
|
|
"skipLibCheck": true,
|
|
"sourceMap": false,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"types": ["node", "@extism/js-pdk"],
|
|
"verbatimModuleSyntax": true
|
|
}
|
|
}
|