mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 07:04:04 -05:00
Port to vitest. Port everything to typescript. Remove chai, mocha and chai-as-promised. Adds some docs.
14 lines
359 B
JSON
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
|
|
}
|
|
}
|