mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-05-14 09:17:29 +01:00
bae31897f6
- Update immutable dependency to stable v4.3.8 - Add type assertions for getIn calls that now return unknown in v4 stable - Add skipLibCheck to tsconfig.json for @nteract and @octokit .d.ts compat - Add patch-package patch for @nteract/commutable .ts source files Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
60 lines
1.4 KiB
JSON
60 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,
|
|
"skipLibCheck": 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"
|
|
}
|
|
}
|
|
} |