mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-06-08 00:22:32 +01:00
This does not change the strictness of what we build. It doesn't make things more lax either, that stays exactly the same. But the editor will now complain more.
29 lines
813 B
JSON
29 lines
813 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"sourceMap": false,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": 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"]
|
|
},
|
|
"include": ["./src/**/*", "./test/testExplorer/TestExplorer.ts"],
|
|
"exclude": ["./src/**/__mocks__/**/*"]
|
|
}
|