cordis/tsconfig.json
2021-12-04 08:26:49 -06:00

27 lines
582 B
JSON

{
"compilerOptions": {
"target": "ES2017",
"module": "CommonJS",
"moduleResolution": "node",
"sourceMap": true,
"experimentalDecorators": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"strictNullChecks": true,
"alwaysStrict": true,
"skipLibCheck": true,
"outDir": "dist"
},
"exclude": [
"node_modules",
"dist",
"client/tests"
]
}