1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-09 05:16:47 +01:00
immich/server/tsconfig.json

21 lines
439 B
JSON
Raw Normal View History

2022-02-03 17:06:44 +01:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"incremental": true,
"skipLibCheck": true,
"esModuleInterop": true,
},
"exclude": [
"dist",
"node_modules",
2022-02-03 17:06:44 +01:00
"upload"
],
}