mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 10:33:59 -05:00
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.
15 lines
385 B
JSON
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"]
|
|
}
|
|
}
|