obolus/api/tsconfig.json

23 lines
584 B
JSON
Raw Permalink Normal View History

2019-05-22 18:36:09 +00:00
{
"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
}
}