mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-06-29 01:27:22 +01:00
8d01a46d00
Bump immutable from 4.0.0-rc.12 to the stable 4.3.8 release (top of the 4.x line; stays within the <5.0.0 peer ranges required by @nteract/* and redux-immutable). immutable 4.3.8 tightened RecordOf<TProps extends Object> to extends object. The third-party @nteract/myths types (pulled in via @nteract/core) pass an unconstrained STATE to RecordOf<STATE>, which tsc rejects. Enable skipLibCheck (standard TS fix) to skip type-checking of node_modules .d.ts files; no effect on emit or our own source. 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,
|
|
"skipLibCheck": true,
|
|
"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"
|
|
}
|
|
}
|
|
} |