cordis/src/tsconfig.json
2022-02-08 18:05:45 -06:00

26 lines
691 B
JSON

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