Files
compiler-explorer/cypress/tsconfig.json
Matt Godbolt fd3dd917f5 Vitest (#6219)
Port to vitest. Port everything to typescript. Remove chai, mocha and
chai-as-promised. Adds some docs.
2024-03-08 22:25:09 -06:00

14 lines
359 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
}
}