2020-05-26 03:30:55 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"sourceMap": false,
|
|
|
|
"noImplicitAny": true,
|
2021-05-07 16:25:19 +01:00
|
|
|
"noImplicitThis": true,
|
2020-05-26 03:30:55 +01:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"module": "esnext",
|
2021-03-29 19:31:52 +01:00
|
|
|
"target": "es2017",
|
2021-01-20 06:42:45 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2021-05-07 16:25:19 +01:00
|
|
|
"lib": [
|
|
|
|
"es5",
|
|
|
|
"es6",
|
|
|
|
"dom"
|
|
|
|
],
|
2020-05-26 03:30:55 +01:00
|
|
|
"jsx": "react",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
2020-07-08 16:12:49 +01:00
|
|
|
"noEmit": true,
|
2021-05-07 16:25:19 +01:00
|
|
|
"types": [
|
|
|
|
"jest"
|
|
|
|
]
|
2020-05-26 03:30:55 +01:00
|
|
|
},
|
2021-05-18 00:10:15 +01:00
|
|
|
"typedocOptions": {
|
|
|
|
"entryPoints": [
|
|
|
|
"./src/SelfServe/Documentation/Documentation.ts",
|
|
|
|
"./src/SelfServe/Documentation/SupportedFeatures.ts",
|
|
|
|
"./src/SelfServe/Decorators.tsx",
|
|
|
|
"./src/SelfServe/SelfServeTypes.ts",
|
|
|
|
"./src/SelfServe/SelfServeUtils.tsx",
|
|
|
|
"./src/SelfServe/SelfServeTelemetryProcessor.ts"
|
|
|
|
],
|
|
|
|
"out": "docs",
|
|
|
|
"excludeInternal": true,
|
|
|
|
"includes": "./src/SelfServe/Documentation",
|
|
|
|
"disableSources": true
|
|
|
|
},
|
2021-05-07 16:25:19 +01:00
|
|
|
"include": [
|
|
|
|
"./src/**/*",
|
|
|
|
"./utils/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"./src/**/__mocks__/**/*"
|
|
|
|
]
|
|
|
|
}
|