immich/server/tsconfig.json

23 lines
457 B
JSON
Raw Normal View History

2022-02-03 09:06:44 -07:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"esModuleInterop": true,
},
"exclude": [
"upload"
],
"include": [
"src"
]
}