2020-08-18 13:54:53 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-10-13 22:57:06 +02:00
|
|
|
"module": "es2020",
|
2021-09-10 16:24:33 +02:00
|
|
|
"target": "es2020",
|
|
|
|
"lib": ["esnext", "dom", "webworker"],
|
2020-09-08 18:45:03 +02:00
|
|
|
"moduleResolution": "node",
|
2021-09-10 16:24:33 +02:00
|
|
|
"typeRoots": ["node_modules/@types"],
|
2020-12-23 17:26:55 +01:00
|
|
|
"outDir": "types",
|
2021-09-10 16:24:33 +02:00
|
|
|
"allowJs": false,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"alwaysStrict": true,
|
2020-12-19 17:46:41 +01:00
|
|
|
"declaration": true,
|
2020-10-15 12:48:39 +02:00
|
|
|
"emitDecoratorMetadata": true,
|
2020-10-13 22:57:06 +02:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"importHelpers": true,
|
2021-09-10 16:24:33 +02:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-12-23 18:58:47 +01:00
|
|
|
"noImplicitAny": false,
|
2021-09-10 16:24:33 +02:00
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
|
|
"noUncheckedIndexedAccess": false,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"noUnusedParameters": true,
|
2020-12-19 17:46:41 +01:00
|
|
|
"preserveConstEnums": true,
|
|
|
|
"removeComments": false,
|
2020-10-13 22:57:06 +02:00
|
|
|
"resolveJsonModule": true,
|
2020-12-19 17:46:41 +01:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"sourceMap": false,
|
2021-09-08 19:51:28 +02:00
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictFunctionTypes": true,
|
2021-09-10 16:24:33 +02:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": true,
|
2020-08-18 13:54:53 +02:00
|
|
|
},
|
2020-08-21 15:01:04 +02:00
|
|
|
"formatCodeOptions": { "indentSize": 2, "tabSize": 2 },
|
2020-09-08 18:45:03 +02:00
|
|
|
"include": ["src"],
|
2021-09-10 16:24:33 +02:00
|
|
|
"exclude": ["node_modules"],
|
2021-03-14 13:47:38 +01:00
|
|
|
"typedocOptions": {
|
|
|
|
"excludePrivate": true,
|
|
|
|
"excludeExternals": true,
|
|
|
|
"excludeProtected": true,
|
|
|
|
"excludeInternal": true,
|
|
|
|
"disableSources": false,
|
|
|
|
"gitRevision": "main",
|
|
|
|
"hideGenerator": "true",
|
|
|
|
"theme": "default",
|
|
|
|
"readme": "none",
|
|
|
|
"out": "typedoc",
|
2021-08-10 14:19:49 +02:00
|
|
|
"logLevel": "Verbose",
|
|
|
|
"logger": "none",
|
2021-03-14 13:47:38 +01:00
|
|
|
}
|
2020-09-08 18:45:03 +02:00
|
|
|
}
|