Skip to content

Commit

Permalink
Upgrade cypress
Browse files Browse the repository at this point in the history
  • Loading branch information
Kadrian committed Nov 13, 2023
1 parent 5805f86 commit 364d790
Show file tree
Hide file tree
Showing 3 changed files with 336 additions and 93 deletions.
23 changes: 19 additions & 4 deletions frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,29 @@
"module": "ESNext",
"target": "es6",
"allowJs": true,
"lib": ["es5", "es6", "dom", "dom.iterable", "es2019"],
"lib": [
"es5",
"es6",
"dom",
"dom.iterable",
"es2019"
],
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"strictBindCallApply": true
},
"include": ["src", "node_modules/**/*/*.d.ts"],
"exclude": ["node_modules", "public", ".cache", ".idea", "src/ignored/*"]
}
"include": [
"src",
"node_modules/**/*/*.d.ts"
],
"exclude": [
"node_modules",
"public",
".cache",
".idea",
"src/ignored/*"
]
}
Loading

0 comments on commit 364d790

Please sign in to comment.