Files
compiler-explorer/cypress/tsconfig.json
Mats Larsen ef0c9f5ded Don't use sinon/chai code for frontend tests
Using these imply that sinon and chai will be built for the final bundle that the user downloads. This is not a good thing, because it bloats our bundle.
2024-10-28 18:59:56 +09:00

15 lines
385 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
/* Module resolution */
"target": "esnext",
"module": "es2015",
"moduleResolution": "bundler",
/* Code generation */
"typeRoots": ["../node_modules/@types"],
/* https://github.com/cypress-io/cypress/issues/26203#issuecomment-1571861397 */
"sourceMap": false,
"types": ["cypress"]
}
}