mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-11-25 15:06:55 +00:00
3f8e394952
* Fix Upload Items * Remove debugger * Switch to bulk APIs * Address TODO Co-authored-by: Jordi Bunster <jbunster@microsoft.com>
27 lines
758 B
JSON
27 lines
758 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"sourceMap": false,
|
|
"noImplicitAny": 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__/**/*"]
|
|
}
|