2021-10-30 17:26:41 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-11-07 22:39:59 +00:00
|
|
|
"target": "ES2017",
|
2021-11-02 04:29:24 +00:00
|
|
|
"module": "CommonJS",
|
2021-10-30 17:26:41 +00:00
|
|
|
"moduleResolution": "node",
|
2022-02-09 00:05:45 +00:00
|
|
|
"esModuleInterop": true /* for react */,
|
|
|
|
"jsx": "react" /* for react */,
|
2021-10-30 17:26:41 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
2021-12-04 14:26:49 +00:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"strictBindCallApply": true,
|
2021-12-04 14:40:08 +00:00
|
|
|
"strictFunctionTypes": true,
|
2021-10-30 17:26:41 +00:00
|
|
|
"strictNullChecks": true,
|
2021-12-04 14:40:08 +00:00
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"useUnknownInCatchVariables": true,
|
2021-12-04 14:26:49 +00:00
|
|
|
"alwaysStrict": true,
|
2021-10-30 17:26:41 +00:00
|
|
|
"skipLibCheck": true,
|
2021-12-04 14:59:30 +00:00
|
|
|
"outDir": "../dist"
|
2021-10-30 17:26:41 +00:00
|
|
|
},
|
2022-02-09 00:05:45 +00:00
|
|
|
"exclude": ["node_modules", "dist", "client/tests"]
|
2021-10-30 17:26:41 +00:00
|
|
|
}
|