obolus/api/tsconfig.json
cupcakearmy d9df3e7550 backend
2019-05-22 20:36:09 +02:00

23 lines
584 B
JSON

{
"compilerOptions": {
"outDir": "./dist",
"target": "esnext",
"module": "commonjs",
"removeComments": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
}
}