mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-11-25 15:06:55 +00:00
27 lines
735 B
JSON
27 lines
735 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/**/*", "./utils/**/*"],
|
|
"exclude": ["./src/**/__mocks__/**/*"]
|
|
}
|