2
0
Files
bot/apps/builder/cypress/tsconfig.json

16 lines
374 B
JSON
Raw Normal View History

2021-11-29 15:19:07 +01:00
{
"extends": "../tsconfig.json",
"include": ["**/*.ts"],
"exclude": [],
"compilerOptions": {
2021-12-28 11:13:09 +01:00
"types": ["cypress", "@testing-library/cypress", "cypress-file-upload"],
2022-01-04 15:50:56 +01:00
"lib": ["es2015", "dom", "ES2021.String"],
2021-11-29 15:19:07 +01:00
"target": "es5",
"isolatedModules": false,
"allowJs": true,
2021-12-06 15:48:50 +01:00
"noEmit": true,
2021-12-17 07:54:12 +01:00
"downlevelIteration": true,
"jsx": "react"
2021-11-29 15:19:07 +01:00
}
}