mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-11-25 15:06:55 +00:00
62e205be6a
* initial commit for docs * Added readme * modified selfServeutil docs * updated docs * moved documentation to docs folder * Updated ReadME for selfserve * added more comments * Added more function types * Update index.html * Update index.html * minro edits * minor edits * package.json updated * Added Module decorators * Added modules * initial commit for mongo shell refactor * undid changes * addressed PR comments * docs changes * addressed PR comments * More changes * Added selfserveexample types file * minor edits * minor edits * Addressed PR comments * format changes * added Metrics blade link * documentation changes * updated docs * Addressed PR comments * fixed format error
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"sourceMap": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"downlevelIteration": true,
|
|
"module": "esnext",
|
|
"target": "es2017",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"lib": [
|
|
"es5",
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"types": [
|
|
"jest"
|
|
]
|
|
},
|
|
"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
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./utils/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/__mocks__/**/*"
|
|
]
|
|
} |