PromucFlow_constructor/app/client/cypress/tsconfig.json
Rishabh Rathod b61ceab94b
fix: Add meta to eval cycle and update it when default changes (#10401)
* Rearrange data tree widget factory

* Remove existing handling of default value override

* Altternate way of meta property override

* Fix tests

Co-authored-by: hetunandu <hetu@appsmith.com>
2022-01-28 16:40:05 +05:30

40 lines
914 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext",
"es5",
"es2015.collection",
"es2015.iterable",
"es2020.string"
],
"strict": true,
"outDir": "./out/js/cypress",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"downlevelIteration": true,
"experimentalDecorators": true,
"importHelpers": true,
"typeRoots": [
"./typings",
"./node_modules/@types"
],
"sourceMap": true,
"baseUrl": "./cypress",
"noFallthroughCasesInSwitch": true,
"types": ["cypress", "cypress-xpath"]
},
"include": ["/**/*.ts"]
}