mirror of
https://github.com/immich-app/immich.git
synced 2026-06-26 08:24:29 -07:00
0656e7e231
Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
28 lines
703 B
JSON
28 lines
703 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",
|
|
"typeRoots": ["./node_modules/@types", "./node_modules"],
|
|
"types": ["node", "@extism/js-pdk"],
|
|
"verbatimModuleSyntax": true
|
|
}
|
|
}
|