cordis/src/tsconfig.json

30 lines
700 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",
2021-12-06 03:01:17 +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
},
"exclude": [
"node_modules",
2021-12-01 02:45:06 +00:00
"dist",
"client/tests"
2021-10-30 17:26:41 +00:00
]
}