cordis/src/tsconfig.json

26 lines
691 B
JSON
Raw Normal View History

2021-10-30 17:26:41 +00:00
{
"compilerOptions": {
"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,
"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
}