cosmos-explorer/tsconfig.json
vchske 4617fa9364
Update throughput settings tab with new elasticity properties (#1461)
* Adding RU thermometer to settings throughput tab

* Finalizing RU thermometer on throughput settings

* Updated snapshot

* Fixing formatting

* Fixing lint errors

* Rerun prettier

* Fixing Offer properties

* Fixing Types

* Updating ARM clients, and enabling new elasticity properties

* Updating snapshots

* Updating an issue caused by updating ARM client

* Latest changes based on feedback

* Fixing lint and unit tests

* Minor fix

* Minor text change

* Changed some formatting
2023-06-16 15:54:29 -07:00

59 lines
1.4 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"
],
"baseUrl": "src"
},
"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",
"./src/**/*",
"./utils/**/*"
],
"exclude": [
"./src/**/__mocks__/**/*"
],
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}