mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 10:33:59 -05:00
Port to vitest. Port everything to typescript. Remove chai, mocha and chai-as-promised. Adds some docs.
18 lines
491 B
JSON
18 lines
491 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"files": ["app.ts", "compiler-args-app.ts"],
|
|
"include": ["**/*.js", "**/*.ts"],
|
|
"exclude": ["out", "test", "etc", "examples", "static", "**/*.d.ts", "cypress"],
|
|
"compilerOptions": {
|
|
/* Module resolution */
|
|
"target": "esnext",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
/* Code generation */
|
|
"outDir": "./out/dist",
|
|
"typeRoots": ["./node_modules/@types"],
|
|
/* Other options */
|
|
"allowJs": true
|
|
}
|
|
}
|